[#1454] Add line breaks to generated Javadoc where appropriate
This commit is contained in:
parent
2dc7d8856d
commit
2150f95d2c
@ -209,7 +209,7 @@ public class DefaultGenerator extends AbstractGenerator {
|
||||
printHeader(outF, schema);
|
||||
printClassJavadoc(outF,
|
||||
"A Factory for specific use with the <code>" + schema.getOutputName() +
|
||||
"</code> schema.<p>This Factory will not render the <code>" + schema.getOutputName() +
|
||||
"</code> schema.\n<p>\nThis Factory will not render the <code>" + schema.getOutputName() +
|
||||
"</code> schema's schema name in rendered SQL (assuming that you use it as the default schema on your connection!). Use the more generic {@link " +
|
||||
database.getDialect().getFactory().getName() +
|
||||
"} or the {@link " + Factory.class.getName() + "} instead, if you want to fully qualify tables, routines, etc.");
|
||||
@ -961,7 +961,7 @@ public class DefaultGenerator extends AbstractGenerator {
|
||||
|
||||
GenerationWriter out = new GenerationWriter(new File(targetSchemaDir, "Keys.java"));
|
||||
printHeader(out, schema);
|
||||
printClassJavadoc(out, "A class modelling foreign key relationships between tables of the " + schema.getOutputName() + " schema");
|
||||
printClassJavadoc(out, "A class modelling foreign key relationships between tables of the <code>" + schema.getOutputName() + "</code> schema");
|
||||
|
||||
out.suppressWarnings("unchecked");
|
||||
out.print("public class Keys extends ");
|
||||
@ -2756,7 +2756,7 @@ public class DefaultGenerator extends AbstractGenerator {
|
||||
|
||||
if (comment != null && comment.length() > 0) {
|
||||
out.println(" *");
|
||||
out.println(" * " + comment);
|
||||
printJavadocParagraph(out, comment, "");
|
||||
}
|
||||
|
||||
if (deprecation != null && deprecation.length() > 0) {
|
||||
@ -2779,6 +2779,40 @@ public class DefaultGenerator extends AbstractGenerator {
|
||||
out.printSuppressWarningsPlaceholder();
|
||||
}
|
||||
|
||||
/**
|
||||
* This method is used to add line breaks in lengthy javadocs
|
||||
*/
|
||||
private void printJavadocParagraph(GenerationWriter out, String comment, String indent) {
|
||||
boolean newLine = true;
|
||||
int lineLength = 0;
|
||||
|
||||
for (int i = 0; i < comment.length(); i++) {
|
||||
if (newLine) {
|
||||
out.print(indent);
|
||||
out.print(" * ");
|
||||
|
||||
newLine = false;
|
||||
}
|
||||
|
||||
out.print(comment.charAt(i));
|
||||
lineLength++;
|
||||
|
||||
if (comment.charAt(i) == '\n') {
|
||||
lineLength = 0;
|
||||
newLine = true;
|
||||
}
|
||||
else if (lineLength > 70 && Character.isWhitespace(comment.charAt(i))) {
|
||||
out.println();
|
||||
lineLength = 0;
|
||||
newLine = true;
|
||||
}
|
||||
}
|
||||
|
||||
if (!newLine) {
|
||||
out.println();
|
||||
}
|
||||
}
|
||||
|
||||
private void printHeader(GenerationWriter out, Definition definition) {
|
||||
printHeader(out, definition, Mode.DEFAULT);
|
||||
}
|
||||
|
||||
@ -73,6 +73,10 @@ public class GenerationWriter {
|
||||
initialisationStatements.add(statement);
|
||||
}
|
||||
|
||||
public void print(char value) {
|
||||
sb.append(value);
|
||||
}
|
||||
|
||||
public void print(int value) {
|
||||
sb.append(value);
|
||||
}
|
||||
|
||||
@ -6,7 +6,8 @@ package org.jooq.examples.mysql.sakila;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* A class modelling foreign key relationships between tables of the sakila schema
|
||||
* A class modelling foreign key relationships between tables of the <code>sakila</code>
|
||||
* schema
|
||||
*/
|
||||
@SuppressWarnings({"unchecked"})
|
||||
public class Keys extends org.jooq.impl.AbstractKeys {
|
||||
|
||||
@ -5,10 +5,18 @@ package org.jooq.examples.mysql.sakila;
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* A Factory for specific use with the <code>sakila</code> schema.
|
||||
* <p>
|
||||
* This Factory will not render the <code>sakila</code> schema's schema name
|
||||
* in rendered SQL (assuming that you use it as the default schema on your
|
||||
* connection!). Use the more generic {@link org.jooq.util.mysql.MySQLFactory}
|
||||
* or the {@link org.jooq.impl.Factory} instead, if you want to fully qualify
|
||||
* tables, routines, etc.
|
||||
*/
|
||||
public class SakilaFactory extends org.jooq.util.mysql.MySQLFactory {
|
||||
|
||||
private static final long serialVersionUID = -1333757223;
|
||||
private static final long serialVersionUID = -619523749;
|
||||
|
||||
/**
|
||||
* Create a factory with a connection
|
||||
|
||||
@ -5,10 +5,18 @@ package org.jooq.examples.oracle.sys;
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* A Factory for specific use with the <code>SYS</code> schema.
|
||||
* <p>
|
||||
* This Factory will not render the <code>SYS</code> schema's schema name
|
||||
* in rendered SQL (assuming that you use it as the default schema on your
|
||||
* connection!). Use the more generic {@link org.jooq.util.oracle.OracleFactory}
|
||||
* or the {@link org.jooq.impl.Factory} instead, if you want to fully qualify
|
||||
* tables, routines, etc.
|
||||
*/
|
||||
public class SysFactory extends org.jooq.util.oracle.OracleFactory {
|
||||
|
||||
private static final long serialVersionUID = 288254089;
|
||||
private static final long serialVersionUID = 1393274273;
|
||||
|
||||
/**
|
||||
* Create a factory with a connection
|
||||
|
||||
@ -6,7 +6,8 @@ package org.jooq.examples.sqlserver.adventureworks.dbo;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* A class modelling foreign key relationships between tables of the dbo schema
|
||||
* A class modelling foreign key relationships between tables of the <code>dbo</code>
|
||||
* schema
|
||||
*/
|
||||
@SuppressWarnings({"unchecked"})
|
||||
public class Keys extends org.jooq.impl.AbstractKeys {
|
||||
|
||||
@ -5,10 +5,18 @@ package org.jooq.examples.sqlserver.adventureworks.dbo;
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* A Factory for specific use with the <code>dbo</code> schema.
|
||||
* <p>
|
||||
* This Factory will not render the <code>dbo</code> schema's schema name
|
||||
* in rendered SQL (assuming that you use it as the default schema on your
|
||||
* connection!). Use the more generic {@link org.jooq.util.sqlserver.SQLServerFactory}
|
||||
* or the {@link org.jooq.impl.Factory} instead, if you want to fully qualify
|
||||
* tables, routines, etc.
|
||||
*/
|
||||
public class dboFactory extends org.jooq.util.sqlserver.SQLServerFactory {
|
||||
|
||||
private static final long serialVersionUID = 1947280691;
|
||||
private static final long serialVersionUID = -46149831;
|
||||
|
||||
/**
|
||||
* Create a factory with a connection
|
||||
|
||||
@ -5,10 +5,18 @@ package org.jooq.examples.sqlserver.adventureworks.humanresources;
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* A Factory for specific use with the <code>HumanResources</code> schema.
|
||||
* <p>
|
||||
* This Factory will not render the <code>HumanResources</code> schema's schema
|
||||
* name in rendered SQL (assuming that you use it as the default schema on
|
||||
* your connection!). Use the more generic {@link org.jooq.util.sqlserver.SQLServerFactory}
|
||||
* or the {@link org.jooq.impl.Factory} instead, if you want to fully qualify
|
||||
* tables, routines, etc.
|
||||
*/
|
||||
public class HumanResourcesFactory extends org.jooq.util.sqlserver.SQLServerFactory {
|
||||
|
||||
private static final long serialVersionUID = 1985623770;
|
||||
private static final long serialVersionUID = 357857734;
|
||||
|
||||
/**
|
||||
* Create a factory with a connection
|
||||
|
||||
@ -6,7 +6,8 @@ package org.jooq.examples.sqlserver.adventureworks.humanresources;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* A class modelling foreign key relationships between tables of the HumanResources schema
|
||||
* A class modelling foreign key relationships between tables of the <code>HumanResources</code>
|
||||
* schema
|
||||
*/
|
||||
@SuppressWarnings({"unchecked"})
|
||||
public class Keys extends org.jooq.impl.AbstractKeys {
|
||||
|
||||
@ -6,7 +6,8 @@ package org.jooq.examples.sqlserver.adventureworks.person;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* A class modelling foreign key relationships between tables of the Person schema
|
||||
* A class modelling foreign key relationships between tables of the <code>Person</code>
|
||||
* schema
|
||||
*/
|
||||
@SuppressWarnings({"unchecked"})
|
||||
public class Keys extends org.jooq.impl.AbstractKeys {
|
||||
|
||||
@ -5,10 +5,18 @@ package org.jooq.examples.sqlserver.adventureworks.person;
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* A Factory for specific use with the <code>Person</code> schema.
|
||||
* <p>
|
||||
* This Factory will not render the <code>Person</code> schema's schema name
|
||||
* in rendered SQL (assuming that you use it as the default schema on your
|
||||
* connection!). Use the more generic {@link org.jooq.util.sqlserver.SQLServerFactory}
|
||||
* or the {@link org.jooq.impl.Factory} instead, if you want to fully qualify
|
||||
* tables, routines, etc.
|
||||
*/
|
||||
public class PersonFactory extends org.jooq.util.sqlserver.SQLServerFactory {
|
||||
|
||||
private static final long serialVersionUID = 1476849425;
|
||||
private static final long serialVersionUID = -868665299;
|
||||
|
||||
/**
|
||||
* Create a factory with a connection
|
||||
|
||||
@ -6,7 +6,8 @@ package org.jooq.examples.sqlserver.adventureworks.production;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* A class modelling foreign key relationships between tables of the Production schema
|
||||
* A class modelling foreign key relationships between tables of the <code>Production</code>
|
||||
* schema
|
||||
*/
|
||||
@SuppressWarnings({"unchecked"})
|
||||
public class Keys extends org.jooq.impl.AbstractKeys {
|
||||
|
||||
@ -5,10 +5,18 @@ package org.jooq.examples.sqlserver.adventureworks.production;
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* A Factory for specific use with the <code>Production</code> schema.
|
||||
* <p>
|
||||
* This Factory will not render the <code>Production</code> schema's schema
|
||||
* name in rendered SQL (assuming that you use it as the default schema on
|
||||
* your connection!). Use the more generic {@link org.jooq.util.sqlserver.SQLServerFactory}
|
||||
* or the {@link org.jooq.impl.Factory} instead, if you want to fully qualify
|
||||
* tables, routines, etc.
|
||||
*/
|
||||
public class ProductionFactory extends org.jooq.util.sqlserver.SQLServerFactory {
|
||||
|
||||
private static final long serialVersionUID = -1613338819;
|
||||
private static final long serialVersionUID = -382588535;
|
||||
|
||||
/**
|
||||
* Create a factory with a connection
|
||||
|
||||
@ -6,7 +6,8 @@ package org.jooq.examples.sqlserver.adventureworks.purchasing;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* A class modelling foreign key relationships between tables of the Purchasing schema
|
||||
* A class modelling foreign key relationships between tables of the <code>Purchasing</code>
|
||||
* schema
|
||||
*/
|
||||
@SuppressWarnings({"unchecked"})
|
||||
public class Keys extends org.jooq.impl.AbstractKeys {
|
||||
|
||||
@ -5,10 +5,18 @@ package org.jooq.examples.sqlserver.adventureworks.purchasing;
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* A Factory for specific use with the <code>Purchasing</code> schema.
|
||||
* <p>
|
||||
* This Factory will not render the <code>Purchasing</code> schema's schema
|
||||
* name in rendered SQL (assuming that you use it as the default schema on
|
||||
* your connection!). Use the more generic {@link org.jooq.util.sqlserver.SQLServerFactory}
|
||||
* or the {@link org.jooq.impl.Factory} instead, if you want to fully qualify
|
||||
* tables, routines, etc.
|
||||
*/
|
||||
public class PurchasingFactory extends org.jooq.util.sqlserver.SQLServerFactory {
|
||||
|
||||
private static final long serialVersionUID = 335924844;
|
||||
private static final long serialVersionUID = 1374997912;
|
||||
|
||||
/**
|
||||
* Create a factory with a connection
|
||||
|
||||
@ -6,7 +6,8 @@ package org.jooq.examples.sqlserver.adventureworks.sales;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* A class modelling foreign key relationships between tables of the Sales schema
|
||||
* A class modelling foreign key relationships between tables of the <code>Sales</code>
|
||||
* schema
|
||||
*/
|
||||
@SuppressWarnings({"unchecked"})
|
||||
public class Keys extends org.jooq.impl.AbstractKeys {
|
||||
|
||||
@ -5,10 +5,18 @@ package org.jooq.examples.sqlserver.adventureworks.sales;
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* A Factory for specific use with the <code>Sales</code> schema.
|
||||
* <p>
|
||||
* This Factory will not render the <code>Sales</code> schema's schema name
|
||||
* in rendered SQL (assuming that you use it as the default schema on your
|
||||
* connection!). Use the more generic {@link org.jooq.util.sqlserver.SQLServerFactory}
|
||||
* or the {@link org.jooq.impl.Factory} instead, if you want to fully qualify
|
||||
* tables, routines, etc.
|
||||
*/
|
||||
public class SalesFactory extends org.jooq.util.sqlserver.SQLServerFactory {
|
||||
|
||||
private static final long serialVersionUID = 1291306884;
|
||||
private static final long serialVersionUID = -1067807040;
|
||||
|
||||
/**
|
||||
* Create a factory with a connection
|
||||
|
||||
@ -5,10 +5,18 @@ package org.jooq.test.ase.generatedclasses;
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* A Factory for specific use with the <code>dbo</code> schema.
|
||||
* <p>
|
||||
* This Factory will not render the <code>dbo</code> schema's schema name
|
||||
* in rendered SQL (assuming that you use it as the default schema on your
|
||||
* connection!). Use the more generic {@link org.jooq.util.ase.ASEFactory}
|
||||
* or the {@link org.jooq.impl.Factory} instead, if you want to fully qualify
|
||||
* tables, routines, etc.
|
||||
*/
|
||||
public class DboFactory extends org.jooq.util.ase.ASEFactory {
|
||||
|
||||
private static final long serialVersionUID = -1617978843;
|
||||
private static final long serialVersionUID = 1930004943;
|
||||
|
||||
/**
|
||||
* Create a factory with a connection
|
||||
|
||||
@ -6,7 +6,8 @@ package org.jooq.test.ase.generatedclasses;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* A class modelling foreign key relationships between tables of the dbo schema
|
||||
* A class modelling foreign key relationships between tables of the <code>dbo</code>
|
||||
* schema
|
||||
*/
|
||||
@SuppressWarnings({"unchecked"})
|
||||
public class Keys extends org.jooq.impl.AbstractKeys {
|
||||
|
||||
@ -5,10 +5,18 @@ package org.jooq.test.cubrid.generatedclasses;
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* A Factory for specific use with the <code>DBA</code> schema.
|
||||
* <p>
|
||||
* This Factory will not render the <code>DBA</code> schema's schema name
|
||||
* in rendered SQL (assuming that you use it as the default schema on your
|
||||
* connection!). Use the more generic {@link org.jooq.util.cubrid.CUBRIDFactory}
|
||||
* or the {@link org.jooq.impl.Factory} instead, if you want to fully qualify
|
||||
* tables, routines, etc.
|
||||
*/
|
||||
public class DbaFactory extends org.jooq.util.cubrid.CUBRIDFactory {
|
||||
|
||||
private static final long serialVersionUID = -19195127;
|
||||
private static final long serialVersionUID = 1118008517;
|
||||
|
||||
/**
|
||||
* Create a factory with a connection
|
||||
|
||||
@ -6,7 +6,8 @@ package org.jooq.test.cubrid.generatedclasses;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* A class modelling foreign key relationships between tables of the DBA schema
|
||||
* A class modelling foreign key relationships between tables of the <code>DBA</code>
|
||||
* schema
|
||||
*/
|
||||
@SuppressWarnings({"unchecked"})
|
||||
public class Keys extends org.jooq.impl.AbstractKeys {
|
||||
|
||||
@ -6,7 +6,8 @@ package org.jooq.test.db2.generatedclasses;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* A class modelling foreign key relationships between tables of the LUKAS schema
|
||||
* A class modelling foreign key relationships between tables of the <code>LUKAS</code>
|
||||
* schema
|
||||
*/
|
||||
@SuppressWarnings({"unchecked"})
|
||||
public class Keys extends org.jooq.impl.AbstractKeys {
|
||||
|
||||
@ -5,10 +5,18 @@ package org.jooq.test.db2.generatedclasses;
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* A Factory for specific use with the <code>LUKAS</code> schema.
|
||||
* <p>
|
||||
* This Factory will not render the <code>LUKAS</code> schema's schema name
|
||||
* in rendered SQL (assuming that you use it as the default schema on your
|
||||
* connection!). Use the more generic {@link org.jooq.util.db2.DB2Factory}
|
||||
* or the {@link org.jooq.impl.Factory} instead, if you want to fully qualify
|
||||
* tables, routines, etc.
|
||||
*/
|
||||
public class LukasFactory extends org.jooq.util.db2.DB2Factory {
|
||||
|
||||
private static final long serialVersionUID = 1762664296;
|
||||
private static final long serialVersionUID = 707653306;
|
||||
|
||||
/**
|
||||
* Create a factory with a connection
|
||||
|
||||
@ -6,7 +6,8 @@ package org.jooq.test.derby.generatedclasses;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* A class modelling foreign key relationships between tables of the TEST schema
|
||||
* A class modelling foreign key relationships between tables of the <code>TEST</code>
|
||||
* schema
|
||||
*/
|
||||
@SuppressWarnings({"unchecked"})
|
||||
public class Keys extends org.jooq.impl.AbstractKeys {
|
||||
|
||||
@ -5,10 +5,18 @@ package org.jooq.test.derby.generatedclasses;
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* A Factory for specific use with the <code>TEST</code> schema.
|
||||
* <p>
|
||||
* This Factory will not render the <code>TEST</code> schema's schema name
|
||||
* in rendered SQL (assuming that you use it as the default schema on your
|
||||
* connection!). Use the more generic {@link org.jooq.util.derby.DerbyFactory}
|
||||
* or the {@link org.jooq.impl.Factory} instead, if you want to fully qualify
|
||||
* tables, routines, etc.
|
||||
*/
|
||||
public class TestFactory extends org.jooq.util.derby.DerbyFactory {
|
||||
|
||||
private static final long serialVersionUID = -763727052;
|
||||
private static final long serialVersionUID = 1310259370;
|
||||
|
||||
/**
|
||||
* Create a factory with a connection
|
||||
|
||||
@ -6,7 +6,8 @@ package org.jooq.test.h2.generatedclasses;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* A class modelling foreign key relationships between tables of the PUBLIC schema
|
||||
* A class modelling foreign key relationships between tables of the <code>PUBLIC</code>
|
||||
* schema
|
||||
*/
|
||||
@SuppressWarnings({"unchecked"})
|
||||
public class Keys extends org.jooq.impl.AbstractKeys {
|
||||
|
||||
@ -6,11 +6,17 @@ package org.jooq.test.h2.generatedclasses;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* A Factory for specific use with the <code>PUBLIC</code> schema.<p>This Factory will not render the <code>PUBLIC</code> schema's schema name in rendered SQL (assuming that you use it as the default schema on your connection!). Use the more generic {@link org.jooq.util.h2.H2Factory} or the {@link org.jooq.impl.Factory} instead, if you want to fully qualify tables, routines, etc.
|
||||
* A Factory for specific use with the <code>PUBLIC</code> schema.
|
||||
* <p>
|
||||
* This Factory will not render the <code>PUBLIC</code> schema's schema name
|
||||
* in rendered SQL (assuming that you use it as the default schema on your
|
||||
* connection!). Use the more generic {@link org.jooq.util.h2.H2Factory} or
|
||||
* the {@link org.jooq.impl.Factory} instead, if you want to fully qualify
|
||||
* tables, routines, etc.
|
||||
*/
|
||||
public class PublicFactory extends org.jooq.util.h2.H2Factory {
|
||||
|
||||
private static final long serialVersionUID = -904520167;
|
||||
private static final long serialVersionUID = -2050657127;
|
||||
|
||||
/**
|
||||
* Create a factory with a connection
|
||||
|
||||
@ -6,7 +6,8 @@ package org.jooq.test.hsqldb.generatedclasses;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* A class modelling foreign key relationships between tables of the PUBLIC schema
|
||||
* A class modelling foreign key relationships between tables of the <code>PUBLIC</code>
|
||||
* schema
|
||||
*/
|
||||
@SuppressWarnings({"unchecked"})
|
||||
public class Keys extends org.jooq.impl.AbstractKeys {
|
||||
|
||||
@ -5,10 +5,18 @@ package org.jooq.test.hsqldb.generatedclasses;
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* A Factory for specific use with the <code>PUBLIC</code> schema.
|
||||
* <p>
|
||||
* This Factory will not render the <code>PUBLIC</code> schema's schema name
|
||||
* in rendered SQL (assuming that you use it as the default schema on your
|
||||
* connection!). Use the more generic {@link org.jooq.util.hsqldb.HSQLDBFactory}
|
||||
* or the {@link org.jooq.impl.Factory} instead, if you want to fully qualify
|
||||
* tables, routines, etc.
|
||||
*/
|
||||
public class PublicFactory extends org.jooq.util.hsqldb.HSQLDBFactory {
|
||||
|
||||
private static final long serialVersionUID = 1225007735;
|
||||
private static final long serialVersionUID = 1999417933;
|
||||
|
||||
/**
|
||||
* Create a factory with a connection
|
||||
|
||||
@ -6,7 +6,8 @@ package org.jooq.test.ingres.generatedclasses;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* A class modelling foreign key relationships between tables of the test schema
|
||||
* A class modelling foreign key relationships between tables of the <code>test</code>
|
||||
* schema
|
||||
*/
|
||||
@SuppressWarnings({"unchecked"})
|
||||
public class Keys extends org.jooq.impl.AbstractKeys {
|
||||
|
||||
@ -5,10 +5,18 @@ package org.jooq.test.ingres.generatedclasses;
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* A Factory for specific use with the <code>test</code> schema.
|
||||
* <p>
|
||||
* This Factory will not render the <code>test</code> schema's schema name
|
||||
* in rendered SQL (assuming that you use it as the default schema on your
|
||||
* connection!). Use the more generic {@link org.jooq.util.ingres.IngresFactory}
|
||||
* or the {@link org.jooq.impl.Factory} instead, if you want to fully qualify
|
||||
* tables, routines, etc.
|
||||
*/
|
||||
public class TestFactory extends org.jooq.util.ingres.IngresFactory {
|
||||
|
||||
private static final long serialVersionUID = -202885524;
|
||||
private static final long serialVersionUID = -525553662;
|
||||
|
||||
/**
|
||||
* Create a factory with a connection
|
||||
|
||||
@ -6,7 +6,8 @@ package org.jooq.test.mysql.generatedclasses;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* A class modelling foreign key relationships between tables of the test schema
|
||||
* A class modelling foreign key relationships between tables of the <code>test</code>
|
||||
* schema
|
||||
*/
|
||||
@SuppressWarnings({"unchecked"})
|
||||
public class Keys extends org.jooq.impl.AbstractKeys {
|
||||
|
||||
@ -5,10 +5,18 @@ package org.jooq.test.mysql.generatedclasses;
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* A Factory for specific use with the <code>test</code> schema.
|
||||
* <p>
|
||||
* This Factory will not render the <code>test</code> schema's schema name
|
||||
* in rendered SQL (assuming that you use it as the default schema on your
|
||||
* connection!). Use the more generic {@link org.jooq.util.mysql.MySQLFactory}
|
||||
* or the {@link org.jooq.impl.Factory} instead, if you want to fully qualify
|
||||
* tables, routines, etc.
|
||||
*/
|
||||
public class TestFactory extends org.jooq.util.mysql.MySQLFactory {
|
||||
|
||||
private static final long serialVersionUID = -1838278840;
|
||||
private static final long serialVersionUID = 1401560298;
|
||||
|
||||
/**
|
||||
* Create a factory with a connection
|
||||
|
||||
@ -6,7 +6,8 @@ package org.jooq.test.mysql2.generatedclasses;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* A class modelling foreign key relationships between tables of the test2 schema
|
||||
* A class modelling foreign key relationships between tables of the <code>test2</code>
|
||||
* schema
|
||||
*/
|
||||
@SuppressWarnings({"unchecked"})
|
||||
public class Keys extends org.jooq.impl.AbstractKeys {
|
||||
|
||||
@ -5,10 +5,18 @@ package org.jooq.test.mysql2.generatedclasses;
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* A Factory for specific use with the <code>test2</code> schema.
|
||||
* <p>
|
||||
* This Factory will not render the <code>test2</code> schema's schema name
|
||||
* in rendered SQL (assuming that you use it as the default schema on your
|
||||
* connection!). Use the more generic {@link org.jooq.util.mysql.MySQLFactory}
|
||||
* or the {@link org.jooq.impl.Factory} instead, if you want to fully qualify
|
||||
* tables, routines, etc.
|
||||
*/
|
||||
public class Test2Factory extends org.jooq.util.mysql.MySQLFactory {
|
||||
|
||||
private static final long serialVersionUID = 1331404856;
|
||||
private static final long serialVersionUID = -1624998286;
|
||||
|
||||
/**
|
||||
* Create a factory with a connection
|
||||
|
||||
@ -6,7 +6,8 @@ package org.jooq.test.oracle.generatedclasses.multi_schema;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* A class modelling foreign key relationships between tables of the MULTI_SCHEMA schema
|
||||
* A class modelling foreign key relationships between tables of the <code>MULTI_SCHEMA</code>
|
||||
* schema
|
||||
*/
|
||||
@SuppressWarnings({"unchecked"})
|
||||
public class Keys extends org.jooq.impl.AbstractKeys {
|
||||
|
||||
@ -5,10 +5,18 @@ package org.jooq.test.oracle.generatedclasses.multi_schema;
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* A Factory for specific use with the <code>MULTI_SCHEMA</code> schema.
|
||||
* <p>
|
||||
* This Factory will not render the <code>MULTI_SCHEMA</code> schema's schema
|
||||
* name in rendered SQL (assuming that you use it as the default schema on
|
||||
* your connection!). Use the more generic {@link org.jooq.util.oracle.OracleFactory}
|
||||
* or the {@link org.jooq.impl.Factory} instead, if you want to fully qualify
|
||||
* tables, routines, etc.
|
||||
*/
|
||||
public class MultiSchemaFactory extends org.jooq.util.oracle.OracleFactory {
|
||||
|
||||
private static final long serialVersionUID = -863053757;
|
||||
private static final long serialVersionUID = 345593309;
|
||||
|
||||
/**
|
||||
* Create a factory with a connection
|
||||
|
||||
@ -6,7 +6,8 @@ package org.jooq.test.oracle.generatedclasses.test;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* A class modelling foreign key relationships between tables of the TEST schema
|
||||
* A class modelling foreign key relationships between tables of the <code>TEST</code>
|
||||
* schema
|
||||
*/
|
||||
@SuppressWarnings({"unchecked"})
|
||||
public class Keys extends org.jooq.impl.AbstractKeys {
|
||||
|
||||
@ -5,10 +5,18 @@ package org.jooq.test.oracle.generatedclasses.test;
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* A Factory for specific use with the <code>TEST</code> schema.
|
||||
* <p>
|
||||
* This Factory will not render the <code>TEST</code> schema's schema name
|
||||
* in rendered SQL (assuming that you use it as the default schema on your
|
||||
* connection!). Use the more generic {@link org.jooq.util.oracle.OracleFactory}
|
||||
* or the {@link org.jooq.impl.Factory} instead, if you want to fully qualify
|
||||
* tables, routines, etc.
|
||||
*/
|
||||
public class TestFactory extends org.jooq.util.oracle.OracleFactory {
|
||||
|
||||
private static final long serialVersionUID = -1390839680;
|
||||
private static final long serialVersionUID = 1442070570;
|
||||
|
||||
/**
|
||||
* Create a factory with a connection
|
||||
|
||||
@ -5,10 +5,18 @@ package org.jooq.test.oracle2.generatedclasses;
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* A Factory for specific use with the <code>TEST</code> schema.
|
||||
* <p>
|
||||
* This Factory will not render the <code>TEST</code> schema's schema name
|
||||
* in rendered SQL (assuming that you use it as the default schema on your
|
||||
* connection!). Use the more generic {@link org.jooq.util.oracle.OracleFactory}
|
||||
* or the {@link org.jooq.impl.Factory} instead, if you want to fully qualify
|
||||
* tables, routines, etc.
|
||||
*/
|
||||
public class DateAsTimestampTestFactory extends org.jooq.util.oracle.OracleFactory {
|
||||
|
||||
private static final long serialVersionUID = 760310093;
|
||||
private static final long serialVersionUID = 1394864375;
|
||||
|
||||
/**
|
||||
* Create a factory with a connection
|
||||
|
||||
@ -6,7 +6,8 @@ package org.jooq.test.oracle2.generatedclasses;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* A class modelling foreign key relationships between tables of the TEST schema
|
||||
* A class modelling foreign key relationships between tables of the <code>TEST</code>
|
||||
* schema
|
||||
*/
|
||||
@SuppressWarnings({"unchecked"})
|
||||
public class Keys extends org.jooq.impl.AbstractKeys {
|
||||
|
||||
@ -6,7 +6,8 @@ package org.jooq.test.oracle3.generatedclasses;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* A class modelling foreign key relationships between tables of the TEST schema
|
||||
* A class modelling foreign key relationships between tables of the <code>TEST</code>
|
||||
* schema
|
||||
*/
|
||||
@SuppressWarnings({"unchecked"})
|
||||
public class Keys extends org.jooq.impl.AbstractKeys {
|
||||
|
||||
@ -5,10 +5,18 @@ package org.jooq.test.oracle3.generatedclasses;
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* A Factory for specific use with the <code>TEST</code> schema.
|
||||
* <p>
|
||||
* This Factory will not render the <code>TEST</code> schema's schema name
|
||||
* in rendered SQL (assuming that you use it as the default schema on your
|
||||
* connection!). Use the more generic {@link org.jooq.util.oracle.OracleFactory}
|
||||
* or the {@link org.jooq.impl.Factory} instead, if you want to fully qualify
|
||||
* tables, routines, etc.
|
||||
*/
|
||||
public class MyFactory extends org.jooq.util.oracle.OracleFactory implements java.lang.Cloneable {
|
||||
|
||||
private static final long serialVersionUID = -38437295;
|
||||
private static final long serialVersionUID = -1219912281;
|
||||
|
||||
/**
|
||||
* Create a factory with a connection
|
||||
|
||||
@ -6,7 +6,8 @@ package org.jooq.test.postgres.generatedclasses;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* A class modelling foreign key relationships between tables of the public schema
|
||||
* A class modelling foreign key relationships between tables of the <code>public</code>
|
||||
* schema
|
||||
*/
|
||||
@SuppressWarnings({"unchecked"})
|
||||
public class Keys extends org.jooq.impl.AbstractKeys {
|
||||
|
||||
@ -5,10 +5,18 @@ package org.jooq.test.postgres.generatedclasses;
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* A Factory for specific use with the <code>public</code> schema.
|
||||
* <p>
|
||||
* This Factory will not render the <code>public</code> schema's schema name
|
||||
* in rendered SQL (assuming that you use it as the default schema on your
|
||||
* connection!). Use the more generic {@link org.jooq.util.postgres.PostgresFactory}
|
||||
* or the {@link org.jooq.impl.Factory} instead, if you want to fully qualify
|
||||
* tables, routines, etc.
|
||||
*/
|
||||
public class PublicFactory extends org.jooq.util.postgres.PostgresFactory {
|
||||
|
||||
private static final long serialVersionUID = -101137283;
|
||||
private static final long serialVersionUID = 1322980307;
|
||||
|
||||
/**
|
||||
* Create a factory with a connection
|
||||
|
||||
@ -6,7 +6,8 @@ package org.jooq.test.sqlite.generatedclasses;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* A class modelling foreign key relationships between tables of the schema
|
||||
* A class modelling foreign key relationships between tables of the <code></code>
|
||||
* schema
|
||||
*/
|
||||
@SuppressWarnings({"unchecked"})
|
||||
public class Keys extends org.jooq.impl.AbstractKeys {
|
||||
|
||||
@ -5,10 +5,18 @@ package org.jooq.test.sqlserver.generatedclasses;
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* A Factory for specific use with the <code>dbo</code> schema.
|
||||
* <p>
|
||||
* This Factory will not render the <code>dbo</code> schema's schema name
|
||||
* in rendered SQL (assuming that you use it as the default schema on your
|
||||
* connection!). Use the more generic {@link org.jooq.util.sqlserver.SQLServerFactory}
|
||||
* or the {@link org.jooq.impl.Factory} instead, if you want to fully qualify
|
||||
* tables, routines, etc.
|
||||
*/
|
||||
public class DboFactory extends org.jooq.util.sqlserver.SQLServerFactory {
|
||||
|
||||
private static final long serialVersionUID = 592334853;
|
||||
private static final long serialVersionUID = -607465397;
|
||||
|
||||
/**
|
||||
* Create a factory with a connection
|
||||
|
||||
@ -6,7 +6,8 @@ package org.jooq.test.sqlserver.generatedclasses;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* A class modelling foreign key relationships between tables of the dbo schema
|
||||
* A class modelling foreign key relationships between tables of the <code>dbo</code>
|
||||
* schema
|
||||
*/
|
||||
@SuppressWarnings({"unchecked"})
|
||||
public class Keys extends org.jooq.impl.AbstractKeys {
|
||||
|
||||
@ -8,24 +8,19 @@ package org.jooq.test.sqlserver.generatedclasses.tables;
|
||||
*/
|
||||
public class TAuthor extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.sqlserver.generatedclasses.tables.records.TAuthorRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1847875880;
|
||||
private static final long serialVersionUID = -1295194152;
|
||||
|
||||
/**
|
||||
* The singleton instance of dbo.t_author
|
||||
*/
|
||||
public static final org.jooq.test.sqlserver.generatedclasses.tables.TAuthor T_AUTHOR = new org.jooq.test.sqlserver.generatedclasses.tables.TAuthor();
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
private static final java.lang.Class<org.jooq.test.sqlserver.generatedclasses.tables.records.TAuthorRecord> __RECORD_TYPE = org.jooq.test.sqlserver.generatedclasses.tables.records.TAuthorRecord.class;
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
@Override
|
||||
public java.lang.Class<org.jooq.test.sqlserver.generatedclasses.tables.records.TAuthorRecord> getRecordType() {
|
||||
return __RECORD_TYPE;
|
||||
return org.jooq.test.sqlserver.generatedclasses.tables.records.TAuthorRecord.class;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@ -8,24 +8,19 @@ package org.jooq.test.sqlserver.generatedclasses.tables;
|
||||
*/
|
||||
public class TBook extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.sqlserver.generatedclasses.tables.records.TBookRecord> {
|
||||
|
||||
private static final long serialVersionUID = -595099013;
|
||||
private static final long serialVersionUID = -1336070935;
|
||||
|
||||
/**
|
||||
* The singleton instance of dbo.t_book
|
||||
*/
|
||||
public static final org.jooq.test.sqlserver.generatedclasses.tables.TBook T_BOOK = new org.jooq.test.sqlserver.generatedclasses.tables.TBook();
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
private static final java.lang.Class<org.jooq.test.sqlserver.generatedclasses.tables.records.TBookRecord> __RECORD_TYPE = org.jooq.test.sqlserver.generatedclasses.tables.records.TBookRecord.class;
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
@Override
|
||||
public java.lang.Class<org.jooq.test.sqlserver.generatedclasses.tables.records.TBookRecord> getRecordType() {
|
||||
return __RECORD_TYPE;
|
||||
return org.jooq.test.sqlserver.generatedclasses.tables.records.TBookRecord.class;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@ -8,24 +8,19 @@ package org.jooq.test.sqlserver.generatedclasses.tables;
|
||||
*/
|
||||
public class TBookStore extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.sqlserver.generatedclasses.tables.records.TBookStoreRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1556231344;
|
||||
private static final long serialVersionUID = 1740813465;
|
||||
|
||||
/**
|
||||
* The singleton instance of dbo.t_book_store
|
||||
*/
|
||||
public static final org.jooq.test.sqlserver.generatedclasses.tables.TBookStore T_BOOK_STORE = new org.jooq.test.sqlserver.generatedclasses.tables.TBookStore();
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
private static final java.lang.Class<org.jooq.test.sqlserver.generatedclasses.tables.records.TBookStoreRecord> __RECORD_TYPE = org.jooq.test.sqlserver.generatedclasses.tables.records.TBookStoreRecord.class;
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
@Override
|
||||
public java.lang.Class<org.jooq.test.sqlserver.generatedclasses.tables.records.TBookStoreRecord> getRecordType() {
|
||||
return __RECORD_TYPE;
|
||||
return org.jooq.test.sqlserver.generatedclasses.tables.records.TBookStoreRecord.class;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@ -8,24 +8,19 @@ package org.jooq.test.sqlserver.generatedclasses.tables;
|
||||
*/
|
||||
public class TBookToBookStore extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.sqlserver.generatedclasses.tables.records.TBookToBookStoreRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1448477875;
|
||||
private static final long serialVersionUID = 1589355560;
|
||||
|
||||
/**
|
||||
* The singleton instance of dbo.t_book_to_book_store
|
||||
*/
|
||||
public static final org.jooq.test.sqlserver.generatedclasses.tables.TBookToBookStore T_BOOK_TO_BOOK_STORE = new org.jooq.test.sqlserver.generatedclasses.tables.TBookToBookStore();
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
private static final java.lang.Class<org.jooq.test.sqlserver.generatedclasses.tables.records.TBookToBookStoreRecord> __RECORD_TYPE = org.jooq.test.sqlserver.generatedclasses.tables.records.TBookToBookStoreRecord.class;
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
@Override
|
||||
public java.lang.Class<org.jooq.test.sqlserver.generatedclasses.tables.records.TBookToBookStoreRecord> getRecordType() {
|
||||
return __RECORD_TYPE;
|
||||
return org.jooq.test.sqlserver.generatedclasses.tables.records.TBookToBookStoreRecord.class;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@ -8,24 +8,19 @@ package org.jooq.test.sqlserver.generatedclasses.tables;
|
||||
*/
|
||||
public class TBooleans extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.sqlserver.generatedclasses.tables.records.TBooleansRecord> {
|
||||
|
||||
private static final long serialVersionUID = -2036971501;
|
||||
private static final long serialVersionUID = -1284374237;
|
||||
|
||||
/**
|
||||
* The singleton instance of dbo.t_booleans
|
||||
*/
|
||||
public static final org.jooq.test.sqlserver.generatedclasses.tables.TBooleans T_BOOLEANS = new org.jooq.test.sqlserver.generatedclasses.tables.TBooleans();
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
private static final java.lang.Class<org.jooq.test.sqlserver.generatedclasses.tables.records.TBooleansRecord> __RECORD_TYPE = org.jooq.test.sqlserver.generatedclasses.tables.records.TBooleansRecord.class;
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
@Override
|
||||
public java.lang.Class<org.jooq.test.sqlserver.generatedclasses.tables.records.TBooleansRecord> getRecordType() {
|
||||
return __RECORD_TYPE;
|
||||
return org.jooq.test.sqlserver.generatedclasses.tables.records.TBooleansRecord.class;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@ -8,24 +8,19 @@ package org.jooq.test.sqlserver.generatedclasses.tables;
|
||||
*/
|
||||
public class TDates extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.sqlserver.generatedclasses.tables.records.TDatesRecord> {
|
||||
|
||||
private static final long serialVersionUID = 435237347;
|
||||
private static final long serialVersionUID = -1009955035;
|
||||
|
||||
/**
|
||||
* The singleton instance of dbo.t_dates
|
||||
*/
|
||||
public static final org.jooq.test.sqlserver.generatedclasses.tables.TDates T_DATES = new org.jooq.test.sqlserver.generatedclasses.tables.TDates();
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
private static final java.lang.Class<org.jooq.test.sqlserver.generatedclasses.tables.records.TDatesRecord> __RECORD_TYPE = org.jooq.test.sqlserver.generatedclasses.tables.records.TDatesRecord.class;
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
@Override
|
||||
public java.lang.Class<org.jooq.test.sqlserver.generatedclasses.tables.records.TDatesRecord> getRecordType() {
|
||||
return __RECORD_TYPE;
|
||||
return org.jooq.test.sqlserver.generatedclasses.tables.records.TDatesRecord.class;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@ -8,24 +8,19 @@ package org.jooq.test.sqlserver.generatedclasses.tables;
|
||||
*/
|
||||
public class TIdentity extends org.jooq.impl.TableImpl<org.jooq.test.sqlserver.generatedclasses.tables.records.TIdentityRecord> {
|
||||
|
||||
private static final long serialVersionUID = 2079238306;
|
||||
private static final long serialVersionUID = -765139815;
|
||||
|
||||
/**
|
||||
* The singleton instance of dbo.t_identity
|
||||
*/
|
||||
public static final org.jooq.test.sqlserver.generatedclasses.tables.TIdentity T_IDENTITY = new org.jooq.test.sqlserver.generatedclasses.tables.TIdentity();
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
private static final java.lang.Class<org.jooq.test.sqlserver.generatedclasses.tables.records.TIdentityRecord> __RECORD_TYPE = org.jooq.test.sqlserver.generatedclasses.tables.records.TIdentityRecord.class;
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
@Override
|
||||
public java.lang.Class<org.jooq.test.sqlserver.generatedclasses.tables.records.TIdentityRecord> getRecordType() {
|
||||
return __RECORD_TYPE;
|
||||
return org.jooq.test.sqlserver.generatedclasses.tables.records.TIdentityRecord.class;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@ -8,24 +8,19 @@ package org.jooq.test.sqlserver.generatedclasses.tables;
|
||||
*/
|
||||
public class TIdentityPk extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.sqlserver.generatedclasses.tables.records.TIdentityPkRecord> {
|
||||
|
||||
private static final long serialVersionUID = -2094495414;
|
||||
private static final long serialVersionUID = -419590268;
|
||||
|
||||
/**
|
||||
* The singleton instance of dbo.t_identity_pk
|
||||
*/
|
||||
public static final org.jooq.test.sqlserver.generatedclasses.tables.TIdentityPk T_IDENTITY_PK = new org.jooq.test.sqlserver.generatedclasses.tables.TIdentityPk();
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
private static final java.lang.Class<org.jooq.test.sqlserver.generatedclasses.tables.records.TIdentityPkRecord> __RECORD_TYPE = org.jooq.test.sqlserver.generatedclasses.tables.records.TIdentityPkRecord.class;
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
@Override
|
||||
public java.lang.Class<org.jooq.test.sqlserver.generatedclasses.tables.records.TIdentityPkRecord> getRecordType() {
|
||||
return __RECORD_TYPE;
|
||||
return org.jooq.test.sqlserver.generatedclasses.tables.records.TIdentityPkRecord.class;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@ -8,24 +8,19 @@ package org.jooq.test.sqlserver.generatedclasses.tables;
|
||||
*/
|
||||
public class TTriggers extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.sqlserver.generatedclasses.tables.records.TTriggersRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1311617604;
|
||||
private static final long serialVersionUID = -2101917380;
|
||||
|
||||
/**
|
||||
* The singleton instance of dbo.t_triggers
|
||||
*/
|
||||
public static final org.jooq.test.sqlserver.generatedclasses.tables.TTriggers T_TRIGGERS = new org.jooq.test.sqlserver.generatedclasses.tables.TTriggers();
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
private static final java.lang.Class<org.jooq.test.sqlserver.generatedclasses.tables.records.TTriggersRecord> __RECORD_TYPE = org.jooq.test.sqlserver.generatedclasses.tables.records.TTriggersRecord.class;
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
@Override
|
||||
public java.lang.Class<org.jooq.test.sqlserver.generatedclasses.tables.records.TTriggersRecord> getRecordType() {
|
||||
return __RECORD_TYPE;
|
||||
return org.jooq.test.sqlserver.generatedclasses.tables.records.TTriggersRecord.class;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@ -8,24 +8,19 @@ package org.jooq.test.sqlserver.generatedclasses.tables;
|
||||
*/
|
||||
public class T_639NumbersTable extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.sqlserver.generatedclasses.tables.records.T_639NumbersTableRecord> {
|
||||
|
||||
private static final long serialVersionUID = -2118827902;
|
||||
private static final long serialVersionUID = 490205212;
|
||||
|
||||
/**
|
||||
* The singleton instance of dbo.t_639_numbers_table
|
||||
*/
|
||||
public static final org.jooq.test.sqlserver.generatedclasses.tables.T_639NumbersTable T_639_NUMBERS_TABLE = new org.jooq.test.sqlserver.generatedclasses.tables.T_639NumbersTable();
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
private static final java.lang.Class<org.jooq.test.sqlserver.generatedclasses.tables.records.T_639NumbersTableRecord> __RECORD_TYPE = org.jooq.test.sqlserver.generatedclasses.tables.records.T_639NumbersTableRecord.class;
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
@Override
|
||||
public java.lang.Class<org.jooq.test.sqlserver.generatedclasses.tables.records.T_639NumbersTableRecord> getRecordType() {
|
||||
return __RECORD_TYPE;
|
||||
return org.jooq.test.sqlserver.generatedclasses.tables.records.T_639NumbersTableRecord.class;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@ -8,24 +8,19 @@ package org.jooq.test.sqlserver.generatedclasses.tables;
|
||||
*/
|
||||
public class T_658Ref extends org.jooq.impl.TableImpl<org.jooq.test.sqlserver.generatedclasses.tables.records.T_658RefRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1236610199;
|
||||
private static final long serialVersionUID = -2006625009;
|
||||
|
||||
/**
|
||||
* The singleton instance of dbo.t_658_ref
|
||||
*/
|
||||
public static final org.jooq.test.sqlserver.generatedclasses.tables.T_658Ref T_658_REF = new org.jooq.test.sqlserver.generatedclasses.tables.T_658Ref();
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
private static final java.lang.Class<org.jooq.test.sqlserver.generatedclasses.tables.records.T_658RefRecord> __RECORD_TYPE = org.jooq.test.sqlserver.generatedclasses.tables.records.T_658RefRecord.class;
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
@Override
|
||||
public java.lang.Class<org.jooq.test.sqlserver.generatedclasses.tables.records.T_658RefRecord> getRecordType() {
|
||||
return __RECORD_TYPE;
|
||||
return org.jooq.test.sqlserver.generatedclasses.tables.records.T_658RefRecord.class;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@ -8,24 +8,19 @@ package org.jooq.test.sqlserver.generatedclasses.tables;
|
||||
*/
|
||||
public class T_725LobTest extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.sqlserver.generatedclasses.tables.records.T_725LobTestRecord> {
|
||||
|
||||
private static final long serialVersionUID = 970268667;
|
||||
private static final long serialVersionUID = -1039826262;
|
||||
|
||||
/**
|
||||
* The singleton instance of dbo.t_725_lob_test
|
||||
*/
|
||||
public static final org.jooq.test.sqlserver.generatedclasses.tables.T_725LobTest T_725_LOB_TEST = new org.jooq.test.sqlserver.generatedclasses.tables.T_725LobTest();
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
private static final java.lang.Class<org.jooq.test.sqlserver.generatedclasses.tables.records.T_725LobTestRecord> __RECORD_TYPE = org.jooq.test.sqlserver.generatedclasses.tables.records.T_725LobTestRecord.class;
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
@Override
|
||||
public java.lang.Class<org.jooq.test.sqlserver.generatedclasses.tables.records.T_725LobTestRecord> getRecordType() {
|
||||
return __RECORD_TYPE;
|
||||
return org.jooq.test.sqlserver.generatedclasses.tables.records.T_725LobTestRecord.class;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@ -8,24 +8,19 @@ package org.jooq.test.sqlserver.generatedclasses.tables;
|
||||
*/
|
||||
public class T_785 extends org.jooq.impl.TableImpl<org.jooq.test.sqlserver.generatedclasses.tables.records.T_785Record> {
|
||||
|
||||
private static final long serialVersionUID = 460829462;
|
||||
private static final long serialVersionUID = 1879079724;
|
||||
|
||||
/**
|
||||
* The singleton instance of dbo.t_785
|
||||
*/
|
||||
public static final org.jooq.test.sqlserver.generatedclasses.tables.T_785 T_785 = new org.jooq.test.sqlserver.generatedclasses.tables.T_785();
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
private static final java.lang.Class<org.jooq.test.sqlserver.generatedclasses.tables.records.T_785Record> __RECORD_TYPE = org.jooq.test.sqlserver.generatedclasses.tables.records.T_785Record.class;
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
@Override
|
||||
public java.lang.Class<org.jooq.test.sqlserver.generatedclasses.tables.records.T_785Record> getRecordType() {
|
||||
return __RECORD_TYPE;
|
||||
return org.jooq.test.sqlserver.generatedclasses.tables.records.T_785Record.class;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@ -8,24 +8,19 @@ package org.jooq.test.sqlserver.generatedclasses.tables;
|
||||
*/
|
||||
public class VAuthor extends org.jooq.impl.TableImpl<org.jooq.test.sqlserver.generatedclasses.tables.records.VAuthorRecord> {
|
||||
|
||||
private static final long serialVersionUID = -663568395;
|
||||
private static final long serialVersionUID = -1420545077;
|
||||
|
||||
/**
|
||||
* The singleton instance of dbo.v_author
|
||||
*/
|
||||
public static final org.jooq.test.sqlserver.generatedclasses.tables.VAuthor V_AUTHOR = new org.jooq.test.sqlserver.generatedclasses.tables.VAuthor();
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
private static final java.lang.Class<org.jooq.test.sqlserver.generatedclasses.tables.records.VAuthorRecord> __RECORD_TYPE = org.jooq.test.sqlserver.generatedclasses.tables.records.VAuthorRecord.class;
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
@Override
|
||||
public java.lang.Class<org.jooq.test.sqlserver.generatedclasses.tables.records.VAuthorRecord> getRecordType() {
|
||||
return __RECORD_TYPE;
|
||||
return org.jooq.test.sqlserver.generatedclasses.tables.records.VAuthorRecord.class;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@ -8,24 +8,19 @@ package org.jooq.test.sqlserver.generatedclasses.tables;
|
||||
*/
|
||||
public class VBook extends org.jooq.impl.TableImpl<org.jooq.test.sqlserver.generatedclasses.tables.records.VBookRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1547874083;
|
||||
private static final long serialVersionUID = 1484680083;
|
||||
|
||||
/**
|
||||
* The singleton instance of dbo.v_book
|
||||
*/
|
||||
public static final org.jooq.test.sqlserver.generatedclasses.tables.VBook V_BOOK = new org.jooq.test.sqlserver.generatedclasses.tables.VBook();
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
private static final java.lang.Class<org.jooq.test.sqlserver.generatedclasses.tables.records.VBookRecord> __RECORD_TYPE = org.jooq.test.sqlserver.generatedclasses.tables.records.VBookRecord.class;
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
@Override
|
||||
public java.lang.Class<org.jooq.test.sqlserver.generatedclasses.tables.records.VBookRecord> getRecordType() {
|
||||
return __RECORD_TYPE;
|
||||
return org.jooq.test.sqlserver.generatedclasses.tables.records.VBookRecord.class;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@ -8,24 +8,19 @@ package org.jooq.test.sqlserver.generatedclasses.tables;
|
||||
*/
|
||||
public class VLibrary extends org.jooq.impl.TableImpl<org.jooq.test.sqlserver.generatedclasses.tables.records.VLibraryRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1944188715;
|
||||
private static final long serialVersionUID = 613246907;
|
||||
|
||||
/**
|
||||
* The singleton instance of dbo.v_library
|
||||
*/
|
||||
public static final org.jooq.test.sqlserver.generatedclasses.tables.VLibrary V_LIBRARY = new org.jooq.test.sqlserver.generatedclasses.tables.VLibrary();
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
private static final java.lang.Class<org.jooq.test.sqlserver.generatedclasses.tables.records.VLibraryRecord> __RECORD_TYPE = org.jooq.test.sqlserver.generatedclasses.tables.records.VLibraryRecord.class;
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
@Override
|
||||
public java.lang.Class<org.jooq.test.sqlserver.generatedclasses.tables.records.VLibraryRecord> getRecordType() {
|
||||
return __RECORD_TYPE;
|
||||
return org.jooq.test.sqlserver.generatedclasses.tables.records.VLibraryRecord.class;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@ -8,24 +8,19 @@ package org.jooq.test.sqlserver.generatedclasses.tables;
|
||||
*/
|
||||
public class XTestCase_64_69 extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.sqlserver.generatedclasses.tables.records.XTestCase_64_69Record> {
|
||||
|
||||
private static final long serialVersionUID = 1752230745;
|
||||
private static final long serialVersionUID = 1519068705;
|
||||
|
||||
/**
|
||||
* The singleton instance of dbo.x_test_case_64_69
|
||||
*/
|
||||
public static final org.jooq.test.sqlserver.generatedclasses.tables.XTestCase_64_69 X_TEST_CASE_64_69 = new org.jooq.test.sqlserver.generatedclasses.tables.XTestCase_64_69();
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
private static final java.lang.Class<org.jooq.test.sqlserver.generatedclasses.tables.records.XTestCase_64_69Record> __RECORD_TYPE = org.jooq.test.sqlserver.generatedclasses.tables.records.XTestCase_64_69Record.class;
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
@Override
|
||||
public java.lang.Class<org.jooq.test.sqlserver.generatedclasses.tables.records.XTestCase_64_69Record> getRecordType() {
|
||||
return __RECORD_TYPE;
|
||||
return org.jooq.test.sqlserver.generatedclasses.tables.records.XTestCase_64_69Record.class;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@ -8,24 +8,19 @@ package org.jooq.test.sqlserver.generatedclasses.tables;
|
||||
*/
|
||||
public class XTestCase_71 extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.sqlserver.generatedclasses.tables.records.XTestCase_71Record> {
|
||||
|
||||
private static final long serialVersionUID = 683166237;
|
||||
private static final long serialVersionUID = 34728501;
|
||||
|
||||
/**
|
||||
* The singleton instance of dbo.x_test_case_71
|
||||
*/
|
||||
public static final org.jooq.test.sqlserver.generatedclasses.tables.XTestCase_71 X_TEST_CASE_71 = new org.jooq.test.sqlserver.generatedclasses.tables.XTestCase_71();
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
private static final java.lang.Class<org.jooq.test.sqlserver.generatedclasses.tables.records.XTestCase_71Record> __RECORD_TYPE = org.jooq.test.sqlserver.generatedclasses.tables.records.XTestCase_71Record.class;
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
@Override
|
||||
public java.lang.Class<org.jooq.test.sqlserver.generatedclasses.tables.records.XTestCase_71Record> getRecordType() {
|
||||
return __RECORD_TYPE;
|
||||
return org.jooq.test.sqlserver.generatedclasses.tables.records.XTestCase_71Record.class;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@ -8,24 +8,19 @@ package org.jooq.test.sqlserver.generatedclasses.tables;
|
||||
*/
|
||||
public class XTestCase_85 extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.sqlserver.generatedclasses.tables.records.XTestCase_85Record> {
|
||||
|
||||
private static final long serialVersionUID = -565560211;
|
||||
private static final long serialVersionUID = 1297769724;
|
||||
|
||||
/**
|
||||
* The singleton instance of dbo.x_test_case_85
|
||||
*/
|
||||
public static final org.jooq.test.sqlserver.generatedclasses.tables.XTestCase_85 X_TEST_CASE_85 = new org.jooq.test.sqlserver.generatedclasses.tables.XTestCase_85();
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
private static final java.lang.Class<org.jooq.test.sqlserver.generatedclasses.tables.records.XTestCase_85Record> __RECORD_TYPE = org.jooq.test.sqlserver.generatedclasses.tables.records.XTestCase_85Record.class;
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
@Override
|
||||
public java.lang.Class<org.jooq.test.sqlserver.generatedclasses.tables.records.XTestCase_85Record> getRecordType() {
|
||||
return __RECORD_TYPE;
|
||||
return org.jooq.test.sqlserver.generatedclasses.tables.records.XTestCase_85Record.class;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@ -8,24 +8,19 @@ package org.jooq.test.sqlserver.generatedclasses.tables;
|
||||
*/
|
||||
public class XUnused extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.sqlserver.generatedclasses.tables.records.XUnusedRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1405173408;
|
||||
private static final long serialVersionUID = -899607585;
|
||||
|
||||
/**
|
||||
* The singleton instance of dbo.x_unused
|
||||
*/
|
||||
public static final org.jooq.test.sqlserver.generatedclasses.tables.XUnused X_UNUSED = new org.jooq.test.sqlserver.generatedclasses.tables.XUnused();
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
private static final java.lang.Class<org.jooq.test.sqlserver.generatedclasses.tables.records.XUnusedRecord> __RECORD_TYPE = org.jooq.test.sqlserver.generatedclasses.tables.records.XUnusedRecord.class;
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
@Override
|
||||
public java.lang.Class<org.jooq.test.sqlserver.generatedclasses.tables.records.XUnusedRecord> getRecordType() {
|
||||
return __RECORD_TYPE;
|
||||
return org.jooq.test.sqlserver.generatedclasses.tables.records.XUnusedRecord.class;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@ -5,10 +5,18 @@ package org.jooq.test.sybase.generatedclasses;
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* A Factory for specific use with the <code>DBA</code> schema.
|
||||
* <p>
|
||||
* This Factory will not render the <code>DBA</code> schema's schema name
|
||||
* in rendered SQL (assuming that you use it as the default schema on your
|
||||
* connection!). Use the more generic {@link org.jooq.util.sybase.SybaseFactory}
|
||||
* or the {@link org.jooq.impl.Factory} instead, if you want to fully qualify
|
||||
* tables, routines, etc.
|
||||
*/
|
||||
public class DbaFactory extends org.jooq.util.sybase.SybaseFactory {
|
||||
|
||||
private static final long serialVersionUID = 1942683497;
|
||||
private static final long serialVersionUID = 599067461;
|
||||
|
||||
/**
|
||||
* Create a factory with a connection
|
||||
|
||||
@ -6,7 +6,8 @@ package org.jooq.test.sybase.generatedclasses;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* A class modelling foreign key relationships between tables of the DBA schema
|
||||
* A class modelling foreign key relationships between tables of the <code>DBA</code>
|
||||
* schema
|
||||
*/
|
||||
@SuppressWarnings({"unchecked"})
|
||||
public class Keys extends org.jooq.impl.AbstractKeys {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user