[#5280] Bad Javadoc on dropTable() statements

This commit is contained in:
lukaseder 2016-05-17 14:13:20 +02:00
parent 7c697937b5
commit caaf0fcedc
2 changed files with 16 additions and 16 deletions

View File

@ -7515,7 +7515,7 @@ public interface DSLContext extends Scope , AutoCloseable {
DropViewFinalStep dropViewIfExists(Table<?> view);
/**
* Create a new DSL <code>ALTER TABLE</code> statement.
* Create a new DSL <code>DROP TABLE</code> statement.
*
* @see DSL#dropTable(String)
*/
@ -7523,7 +7523,7 @@ public interface DSLContext extends Scope , AutoCloseable {
DropTableStep dropTable(String table);
/**
* Create a new DSL <code>ALTER TABLE</code> statement.
* Create a new DSL <code>DROP TABLE</code> statement.
*
* @see DSL#dropTable(Name)
*/
@ -7539,7 +7539,7 @@ public interface DSLContext extends Scope , AutoCloseable {
DropTableStep dropTable(Table<?> table);
/**
* Create a new DSL <code>ALTER TABLE IF EXISTS</code> statement.
* Create a new DSL <code>DROP TABLE IF EXISTS</code> statement.
* <p>
* If your database doesn't natively support <code>IF EXISTS</code>, this is
* emulated by catching (and ignoring) the relevant {@link SQLException}.
@ -7550,7 +7550,7 @@ public interface DSLContext extends Scope , AutoCloseable {
DropTableStep dropTableIfExists(String table);
/**
* Create a new DSL <code>ALTER TABLE IF EXISTS</code> statement.
* Create a new DSL <code>DROP TABLE IF EXISTS</code> statement.
* <p>
* If your database doesn't natively support <code>IF EXISTS</code>, this is
* emulated by catching (and ignoring) the relevant {@link SQLException}.

View File

@ -5530,10 +5530,7 @@ public class DSL {
}
/**
* Create a new DSL <code>DROP TABLE IF EXISTS</code> statement.
* <p>
* If your database doesn't natively support <code>IF EXISTS</code>, this is
* emulated by catching (and ignoring) the relevant {@link SQLException}.
* Create a new DSL <code>DROP TABLE</code> statement.
*
* @see DSLContext#dropTable(String)
*/
@ -5543,10 +5540,7 @@ public class DSL {
}
/**
* Create a new DSL <code>DROP TABLE IF EXISTS</code> statement.
* <p>
* If your database doesn't natively support <code>IF EXISTS</code>, this is
* emulated by catching (and ignoring) the relevant {@link SQLException}.
* Create a new DSL <code>DROP TABLE</code> statement.
*
* @see DSLContext#dropTable(Name)
*/
@ -5566,9 +5560,12 @@ public class DSL {
}
/**
* Create a new DSL <code>DROP TABLE</code> statement.
* Create a new DSL <code>DROP TABLE IF EXISTS</code> statement.
* <p>
* If your database doesn't natively support <code>IF EXISTS</code>, this is
* emulated by catching (and ignoring) the relevant {@link SQLException}.
*
* @see DSLContext#dropTable(String)
* @see DSLContext#dropTableIfExists(String)
*/
@Support({ CUBRID, DERBY, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE })
public static DropTableStep dropTableIfExists(String table) {
@ -5576,9 +5573,12 @@ public class DSL {
}
/**
* Create a new DSL <code>DROP TABLE</code> statement.
* Create a new DSL <code>DROP TABLE IF EXISTS</code> statement.
* <p>
* If your database doesn't natively support <code>IF EXISTS</code>, this is
* emulated by catching (and ignoring) the relevant {@link SQLException}.
*
* @see DSLContext#dropTable(Name)
* @see DSLContext#dropTableIfExists(Name)
*/
@Support({ CUBRID, DERBY, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE })
public static DropTableStep dropTableIfExists(Name table) {