diff --git a/jOOQ/src/main/java/org/jooq/ExecuteContext.java b/jOOQ/src/main/java/org/jooq/ExecuteContext.java index 68d69a1c2b..73afa1db74 100644 --- a/jOOQ/src/main/java/org/jooq/ExecuteContext.java +++ b/jOOQ/src/main/java/org/jooq/ExecuteContext.java @@ -108,12 +108,12 @@ public interface ExecuteContext { Object data(Object key, Object value); /** - * The configuration wrapped by this context + * The configuration wrapped by this context. */ Configuration configuration(); /** - * The connection to be used in this execute context + * The connection to be used in this execute context. *
* This returns a proxy to the {@link Configuration#getConnectionProvider()}
* 's supplied connection. This proxy takes care of two things:
@@ -128,7 +128,7 @@ public interface ExecuteContext {
Connection connection();
/**
- * The type of database interaction that is being executed
+ * The type of database interaction that is being executed.
*
* @see ExecuteType
*/
@@ -137,7 +137,7 @@ public interface ExecuteContext {
/**
* The jOOQ {@link Query} that is being executed or null if the
* query is unknown, if it is a batch query, or if there was no jOOQ
- * Query
+ * Query.
*
* @see #routine()
* @see #batchQueries()
@@ -146,7 +146,7 @@ public interface ExecuteContext {
/**
* The jOOQ {@link Query} objects that are being executed in batch mode, or
- * empty if the query is unknown or if there was no jOOQ Query
+ * empty if the query is unknown or if there was no jOOQ Query.
*
* If a single Query is executed in non-batch mode, this will
* return an array of length 1, containing that
@@ -161,7 +161,7 @@ public interface ExecuteContext {
/**
* The jOOQ {@link Routine} that is being executed or null if
- * the query is unknown or if there was no jOOQ Routine
+ * the query is unknown or if there was no jOOQ Routine.
*
* @see #routine()
*/
@@ -169,7 +169,7 @@ public interface ExecuteContext {
/**
* The SQL that is being executed or null if the SQL statement
- * is unknown or if there was no SQL statement
+ * is unknown or if there was no SQL statement.
*/
String sql();
@@ -185,7 +185,7 @@ public interface ExecuteContext {
/**
* The generated SQL statements that are being executed in batch mode, or
- * empty if the query is unknown or if there was no SQL statement
+ * empty if the query is unknown or if there was no SQL statement.
*
* If a single Query is executed in non-batch mode, this will
* return an array of length 1, containing that
@@ -258,7 +258,7 @@ public interface ExecuteContext {
Record record();
/**
- * Calling this has no effect. It is being used by jOOQ internally.
+ * Calling this has no effect. It is used by jOOQ internally.
*/
void record(Record record);
@@ -269,7 +269,7 @@ public interface ExecuteContext {
Result> result();
/**
- * Calling this has no effect. It is being used by jOOQ internally.
+ * Calling this has no effect. It is used by jOOQ internally.
*/
void result(Result> result);