Generic interface for all queries, that can be executed by DatabaseAdapter#query(Query). @author Philipp Giese
| 29 | * @author Philipp Giese |
| 30 | */ |
| 31 | public interface Query { |
| 32 | |
| 33 | /** |
| 34 | * In order to work properly, each query has to override |
| 35 | * the <code>toString</code> method of {@link Object}. |
| 36 | * |
| 37 | * @return String representation of the query. |
| 38 | */ |
| 39 | public String toString(); |
| 40 | |
| 41 | } |
no outgoing calls
no test coverage detected