From ec64150cc8dd1759c4df5fee5d66ace7022b01e3 Mon Sep 17 00:00:00 2001 From: Lukas Eder Date: Fri, 3 May 2013 16:12:57 +0200 Subject: [PATCH] Fixed Javadoc --- jOOQ/src/main/java/org/jooq/TableOnStep.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/jOOQ/src/main/java/org/jooq/TableOnStep.java b/jOOQ/src/main/java/org/jooq/TableOnStep.java index 67636928c6..2eea544e5b 100644 --- a/jOOQ/src/main/java/org/jooq/TableOnStep.java +++ b/jOOQ/src/main/java/org/jooq/TableOnStep.java @@ -44,20 +44,20 @@ import org.jooq.impl.DSL; * An intermediate type for the construction of a JOIN clause, * where there must be a join criteria added using an ON clause * (with a {@link Condition}), or using a USING clause (with a list - * of {@link Field}) + * of {@link Field}). * * @author Lukas Eder */ public interface TableOnStep { /** - * Add an ON clause to the JOIN + * Add an ON clause to the JOIN. */ @Support TableOnConditionStep on(Condition... conditions); /** - * Add an ON clause to the JOIN + * Add an ON clause to the JOIN. *

* NOTE: When inserting plain SQL into jOOQ objects, you must * guarantee syntax integrity. You may also create the possibility of @@ -70,7 +70,7 @@ public interface TableOnStep { TableOnConditionStep on(String sql); /** - * Add an ON clause to the JOIN + * Add an ON clause to the JOIN. *

* NOTE: When inserting plain SQL into jOOQ objects, you must * guarantee syntax integrity. You may also create the possibility of @@ -83,7 +83,7 @@ public interface TableOnStep { TableOnConditionStep on(String sql, Object... bindings); /** - * Add an ON clause to the JOIN + * Add an ON clause to the JOIN. *

* NOTE: When inserting plain SQL into jOOQ objects, you must * guarantee syntax integrity. You may also create the possibility of @@ -96,7 +96,7 @@ public interface TableOnStep { TableOnConditionStep on(String sql, QueryPart... parts); /** - * Join the table with the USING(column [, column...]) syntax + * Join a table with the USING(column [, column...]) syntax. *

* If this is not supported by your RDBMS, then jOOQ will try to simulate * this behaviour using the information provided in this query. @@ -105,7 +105,7 @@ public interface TableOnStep { Table using(Field... fields); /** - * Join the table with the USING(column [, column...]) syntax + * Join a table with the USING(column [, column...]) syntax. *

* If this is not supported by your RDBMS, then jOOQ will try to simulate * this behaviour using the information provided in this query.