[#1303] Add connection-less Factory constructors for convenience, when jOOQ is only used as a SQL query builder - Fixed Javadoc errors

This commit is contained in:
Lukas Eder 2012-04-12 18:49:47 +00:00
parent 6d49519087
commit f2b2bf6efd
13 changed files with 0 additions and 39 deletions

View File

@ -105,9 +105,6 @@ public class ASEFactory extends Factory {
* <p>
* Without a connection, this factory cannot execute queries. Use it to
* render SQL only.
*
* @param connection The connection to use with objects created from this
* factory
*/
public ASEFactory() {
super(SQLDialect.ASE);

View File

@ -103,9 +103,6 @@ public class CUBRIDFactory extends Factory {
* <p>
* Without a connection, this factory cannot execute queries. Use it to
* render SQL only.
*
* @param connection The connection to use with objects created from this
* factory
*/
public CUBRIDFactory() {
super(SQLDialect.CUBRID);

View File

@ -110,9 +110,6 @@ public class DB2Factory extends Factory {
* <p>
* Without a connection, this factory cannot execute queries. Use it to
* render SQL only.
*
* @param connection The connection to use with objects created from this
* factory
*/
public DB2Factory() {
super(SQLDialect.DB2);

View File

@ -110,9 +110,6 @@ public class DerbyFactory extends Factory {
* <p>
* Without a connection, this factory cannot execute queries. Use it to
* render SQL only.
*
* @param connection The connection to use with objects created from this
* factory
*/
public DerbyFactory() {
super(SQLDialect.DERBY);

View File

@ -110,9 +110,6 @@ public class H2Factory extends Factory {
* <p>
* Without a connection, this factory cannot execute queries. Use it to
* render SQL only.
*
* @param connection The connection to use with objects created from this
* factory
*/
public H2Factory() {
super(SQLDialect.H2);

View File

@ -110,9 +110,6 @@ public class HSQLDBFactory extends Factory {
* <p>
* Without a connection, this factory cannot execute queries. Use it to
* render SQL only.
*
* @param connection The connection to use with objects created from this
* factory
*/
public HSQLDBFactory() {
super(SQLDialect.HSQLDB);

View File

@ -110,9 +110,6 @@ public class IngresFactory extends Factory {
* <p>
* Without a connection, this factory cannot execute queries. Use it to
* render SQL only.
*
* @param connection The connection to use with objects created from this
* factory
*/
public IngresFactory() {
super(SQLDialect.INGRES);

View File

@ -112,9 +112,6 @@ public class MySQLFactory extends Factory {
* <p>
* Without a connection, this factory cannot execute queries. Use it to
* render SQL only.
*
* @param connection The connection to use with objects created from this
* factory
*/
public MySQLFactory() {
super(SQLDialect.MYSQL);

View File

@ -112,9 +112,6 @@ public class OracleFactory extends Factory {
* <p>
* Without a connection, this factory cannot execute queries. Use it to
* render SQL only.
*
* @param connection The connection to use with objects created from this
* factory
*/
public OracleFactory() {
super(SQLDialect.ORACLE);

View File

@ -110,9 +110,6 @@ public class PostgresFactory extends Factory {
* <p>
* Without a connection, this factory cannot execute queries. Use it to
* render SQL only.
*
* @param connection The connection to use with objects created from this
* factory
*/
public PostgresFactory() {
super(SQLDialect.POSTGRES);

View File

@ -111,9 +111,6 @@ public class SQLiteFactory extends Factory {
* <p>
* Without a connection, this factory cannot execute queries. Use it to
* render SQL only.
*
* @param connection The connection to use with objects created from this
* factory
*/
public SQLiteFactory() {
super(SQLDialect.SQLITE);

View File

@ -110,9 +110,6 @@ public class SQLServerFactory extends Factory {
* <p>
* Without a connection, this factory cannot execute queries. Use it to
* render SQL only.
*
* @param connection The connection to use with objects created from this
* factory
*/
public SQLServerFactory() {
super(SQLDialect.SQLSERVER);

View File

@ -105,9 +105,6 @@ public class SybaseFactory extends Factory {
* <p>
* Without a connection, this factory cannot execute queries. Use it to
* render SQL only.
*
* @param connection The connection to use with objects created from this
* factory
*/
public SybaseFactory() {
super(SQLDialect.SYBASE);