Release 2.0.3 - Fixed Javadoc

This commit is contained in:
Lukas Eder 2012-01-29 15:59:15 +00:00
parent 71b757d29a
commit 973bf98e5c
7 changed files with 29 additions and 26 deletions

View File

@ -87,7 +87,7 @@ public interface Context<C extends Context<C>> extends Configuration {
* <ul>
* <li>When binding variables to a {@link PreparedStatement}. Client code
* must assure that calling {@link #nextIndex()} is followed by setting a
* bind value to {@link #statement()}</li>
* bind value to {@link BindContext#statement()}</li>
* <li>When rendering unnamed bind variables with
* {@link RenderContext#namedParams()} being to <code>true</code></li>
* </ul>

View File

@ -64,10 +64,11 @@ public interface MergeMatchedDeleteStep<R extends Record> extends MergeNotMatche
* <p>
* <b>Note:</b> This syntax is only available for the
* {@link SQLDialect#ORACLE} database!
*
* @see <a
* href="http://docs.oracle.com/cd/B19306_01/server.102/b14200/statements_9016.htm">http://docs.oracle.com/cd/B19306_01/server.102/b14200/statements_9016.htm</a>
* for a full definition of the Oracle <code>MERGE</code> statement
* <p>
* See <a href=
* "http://docs.oracle.com/cd/B19306_01/server.102/b14200/statements_9016.htm"
* >http://docs.oracle.com/cd/B19306_01/server.102/b14200/statements_9016.
* htm</a> for a full definition of the Oracle <code>MERGE</code> statement
*/
@Support(ORACLE)
MergeNotMatchedStep<R> deleteWhere(Condition condition);

View File

@ -64,10 +64,11 @@ public interface MergeMatchedWhereStep<R extends Record> extends MergeNotMatched
* <p>
* <b>Note:</b> This syntax is only available for the
* {@link SQLDialect#ORACLE} database!
*
* @see <a
* href="http://docs.oracle.com/cd/B19306_01/server.102/b14200/statements_9016.htm">http://docs.oracle.com/cd/B19306_01/server.102/b14200/statements_9016.htm</a>
* for a full definition of the Oracle <code>MERGE</code> statement
* <p>
* See <a href=
* "http://docs.oracle.com/cd/B19306_01/server.102/b14200/statements_9016.htm"
* >http://docs.oracle.com/cd/B19306_01/server.102/b14200/statements_9016.
* htm</a> for a full definition of the Oracle <code>MERGE</code> statement
*/
@Support(ORACLE)
MergeMatchedDeleteStep<R> where(Condition condition);

View File

@ -64,10 +64,11 @@ public interface MergeNotMatchedWhereStep<R extends Record> extends MergeFinalSt
* <p>
* <b>Note:</b> This syntax is only available for the
* {@link SQLDialect#ORACLE} database!
*
* @see <a
* href="http://docs.oracle.com/cd/B19306_01/server.102/b14200/statements_9016.htm">http://docs.oracle.com/cd/B19306_01/server.102/b14200/statements_9016.htm</a>
* for a full definition of the Oracle <code>MERGE</code> statement
* <p>
* See <a href=
* "http://docs.oracle.com/cd/B19306_01/server.102/b14200/statements_9016.htm"
* >http://docs.oracle.com/cd/B19306_01/server.102/b14200/statements_9016.
* htm</a> for a full definition of the Oracle <code>MERGE</code> statement
*/
@Support(ORACLE)
MergeFinalStep<R> where(Condition condition);

View File

@ -120,9 +120,9 @@ public interface SelectOnStep {
* Join the previous table on a non-ambiguous foreign key relationship
* between the two joined tables.
* <p>
* See {@link Table#onKey(Key)} for examples.
* See {@link TableOnStep#onKey(ForeignKey)} for examples.
*
* @see Table#onKey(Key)
* @see TableOnStep#onKey(ForeignKey)
* @throws DataAccessException If there is no non-ambiguous key definition
* known to jOOQ
*/
@ -133,9 +133,9 @@ public interface SelectOnStep {
* Join the previous table on a non-ambiguous foreign key relationship
* between the two joined tables.
* <p>
* See {@link Table#onKey(Key)} for examples.
* See {@link TableOnStep#onKey(ForeignKey)} for examples.
*
* @see Table#onKey(Key)
* @see TableOnStep#onKey(ForeignKey)
* @throws DataAccessException If there is no non-ambiguous key definition
* known to jOOQ
*/
@ -146,9 +146,9 @@ public interface SelectOnStep {
* Join the table on a non-ambiguous foreign key relationship between the
* two joined tables.
* <p>
* See {@link Table#onKey(Key)} for examples.
* See {@link TableOnStep#onKey(ForeignKey)} for examples.
*
* @see Table#onKey(Key)
* @see TableOnStep#onKey(ForeignKey)
*/
@Support
SelectJoinStep onKey(ForeignKey<?, ?> key);

View File

@ -138,7 +138,7 @@ public interface SelectQuery extends Select<Record>, ConditionProvider, OrderPro
*
* @param table The joined table
* @param type The type of join
* @see Table#onKey(Key)
* @see TableOnStep#onKey(ForeignKey)
* @throws DataAccessException If there is no non-ambiguous key definition
* known to jOOQ
*/
@ -151,7 +151,7 @@ public interface SelectQuery extends Select<Record>, ConditionProvider, OrderPro
* @param table The joined table
* @param type The type of join
* @param keyFields The foreign key fields
* @see Table#onKey(Key)
* @see TableOnStep#onKey(ForeignKey)
* @throws DataAccessException If there is no non-ambiguous key definition
* known to jOOQ
*/
@ -164,7 +164,7 @@ public interface SelectQuery extends Select<Record>, ConditionProvider, OrderPro
* @param table The joined table
* @param type The type of join
* @param key The foreign key
* @see Table#onKey(Key)
* @see TableOnStep#onKey(ForeignKey)
*/
@Support
void addJoinOnKey(TableLike<?> table, JoinType type, ForeignKey<?, ?> key);

View File

@ -104,9 +104,9 @@ public interface TableOnStep {
* Join the table on a non-ambiguous foreign key relationship between the
* two joined tables.
* <p>
* See {@link #onKey(Key)} for examples.
* See {@link #onKey(ForeignKey)} for examples.
*
* @see #onKey(Key)
* @see #onKey(ForeignKey)
* @throws DataAccessException If there is no non-ambiguous key definition
* known to jOOQ
*/
@ -117,9 +117,9 @@ public interface TableOnStep {
* Join the table on a non-ambiguous foreign key relationship between the
* two joined tables.
* <p>
* See {@link #onKey(Key)} for examples.
* See {@link #onKey(ForeignKey)} for examples.
*
* @see #onKey(Key)
* @see #onKey(ForeignKey)
* @throws DataAccessException If there is no non-ambiguous key definition
* known to jOOQ
*/