summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/iciql/Token.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/iciql/Token.java')
-rw-r--r--src/main/java/com/iciql/Token.java16
1 files changed, 7 insertions, 9 deletions
diff --git a/src/main/java/com/iciql/Token.java b/src/main/java/com/iciql/Token.java
index cc2203c..acc25c4 100644
--- a/src/main/java/com/iciql/Token.java
+++ b/src/main/java/com/iciql/Token.java
@@ -21,15 +21,13 @@ package com.iciql;
* Classes implementing this interface can be used as a token in a statement.
*/
public interface Token {
- /**
- * Append the SQL to the given statement using the given query.
- *
- * @param stat
- * the statement to append the SQL to
- * @param query
- * the query to use
- */
+ /**
+ * Append the SQL to the given statement using the given query.
+ *
+ * @param stat the statement to append the SQL to
+ * @param query the query to use
+ */
- <T> void appendSQL(SQLStatement stat, Query<T> query);
+ <T> void appendSQL(SQLStatement stat, Query<T> query);
}