diff --git a/jOOQ/src/main/java/org/jooq/DSLContext.java b/jOOQ/src/main/java/org/jooq/DSLContext.java index 376e6af77a..641930fa1f 100644 --- a/jOOQ/src/main/java/org/jooq/DSLContext.java +++ b/jOOQ/src/main/java/org/jooq/DSLContext.java @@ -82,13 +82,12 @@ import org.jooq.impl.DSL; * A contextual DSL providing "attached" implementations to the * org.jooq interfaces. *

- * Apart from the {@link DSL}, this contextual DSL is the main entry point - * for client code, to access jOOQ classes and functionality that are related to - * {@link Query} execution. Unlike objects created through the - * DSL type, objects created from a DSLContext will be - * "attached" to the DSLContext's {@link #configuration()}, such - * that they can be executed immediately in a fluent style. An example is given - * here: + * Apart from the {@link DSL}, this contextual DSL is the main entry point for + * client code, to access jOOQ classes and functionality that are related to + * {@link Query} execution. Unlike objects created through the DSL + * type, objects created from a DSLContext will be "attached" to + * the DSLContext's {@link #configuration()}, such that they can be + * executed immediately in a fluent style. An example is given here: *

*

  * DSLContext create = DSL.using(connection, dialect);
@@ -141,8 +140,8 @@ public interface DSLContext {
      * Map a table to another one.
      * 

* This will map a table onto another one, depending on configured table - * mapping in this DSLContext. If no applicable table mapping can - * be found, the table itself is returned. + * mapping in this DSLContext. If no applicable table mapping + * can be found, the table itself is returned. * * @param table A table * @return The mapped table @@ -166,7 +165,8 @@ public interface DSLContext { // ------------------------------------------------------------------------- /** - * Get a new {@link RenderContext} for the context of this DSLContext. + * Get a new {@link RenderContext} for the context of this + * DSLContext. *

* This will return an initialised render context as such: *

@@ -194,8 +196,8 @@ public interface DSLContext { String render(QueryPart part); /** - * Render a QueryPart in the context of this DSLContext, rendering bind - * variables as named parameters. + * Render a QueryPart in the context of this DSLContext, + * rendering bind variables as named parameters. *

* This is the same as calling * renderContext().namedParams(true).render(part) @@ -206,8 +208,8 @@ public interface DSLContext { String renderNamedParams(QueryPart part); /** - * Render a QueryPart in the context of this DSLContext, inlining all bind - * variables. + * Render a QueryPart in the context of this DSLContext, + * inlining all bind variables. *

* This is the same as calling * renderContext().inline(true).render(part) @@ -253,7 +255,8 @@ public interface DSLContext { Param extractParam(QueryPart part, String name); /** - * Get a new {@link BindContext} for the context of this DSLContext. + * Get a new {@link BindContext} for the context of this + * DSLContext. *

* This will return an initialised bind context as such: *