Fixed INSERT Javadoc

This commit is contained in:
Lukas Eder 2013-02-05 16:41:13 +01:00
parent 5d1a98b49d
commit 074c3055d4
9 changed files with 9 additions and 10 deletions

View File

@ -35,12 +35,11 @@
*/
package org.jooq;
/**
* This type is used for the {@link Insert}'s DSL API.
* <p>
* Example: <code><pre>
* Factory create = new Factory();
* Executor create = new Executor(config);
*
* create.insertInto(table, field1, field2)
* .values(value1, value2)

View File

@ -39,7 +39,7 @@ package org.jooq;
* This type is used for the {@link Insert}'s DSL API.
* <p>
* Example: <code><pre>
* Factory create = new Factory();
* Executor create = new Executor(config);
*
* create.insertInto(table, field1, field2)
* .values(value1, value2)

View File

@ -49,7 +49,7 @@ import java.util.Map;
* This type is used for the {@link Insert}'s DSL API.
* <p>
* Example: <code><pre>
* Factory create = new Factory();
* Executor create = new Executor(config);
*
* create.insertInto(table, field1, field2)
* .values(value1, value2)

View File

@ -49,7 +49,7 @@ import org.jooq.impl.Executor;
* This type is used for the {@link Insert}'s DSL API.
* <p>
* Example: <code><pre>
* Factory create = new Factory();
* Executor create = new Executor(config);
*
* create.insertInto(table, field1, field2)
* .values(value1, value2)

View File

@ -41,7 +41,7 @@ import org.jooq.exception.DataAccessException;
* This type is used for the {@link Insert}'s DSL API.
* <p>
* Example: <code><pre>
* Factory create = new Factory();
* Executor create = new Executor(config);
*
* TableRecord<?> record =
* create.insertInto(table, field1, field2)

View File

@ -41,7 +41,7 @@ import java.util.Collection;
* This type is used for the {@link Insert}'s DSL API.
* <p>
* Example: <code><pre>
* Factory create = new Factory();
* Executor create = new Executor(config);
*
* TableRecord<?> record =
* create.insertInto(table, field1, field2)

View File

@ -39,7 +39,7 @@ package org.jooq;
* This type is used for the {@link Insert}'s alternative DSL API.
* <p>
* Example: <code><pre>
* Factory create = new Factory();
* Executor create = new Executor(config);
*
* create.insertInto(table)
* .set(field1, value1)

View File

@ -44,7 +44,7 @@ import org.jooq.impl.Executor;
* This type is used for the {@link Insert}'s alternative DSL API.
* <p>
* Example: <code><pre>
* Factory create = new Factory();
* Executor create = new Executor(config);
*
* create.insertInto(table)
* .set(field1, value1)

View File

@ -43,7 +43,7 @@ import org.jooq.impl.Executor;
* This type is used for the {@link Insert}'s DSL API.
* <p>
* Example: <code><pre>
* Factory create = new Factory();
* Executor create = new Executor(config);
*
* create.insertInto(table, field1, field2)
* .values(value1, value2)