From 566e12e5e1dda806388ec834af6eadea2930cdaa Mon Sep 17 00:00:00 2001 From: Lukas Eder Date: Wed, 27 Aug 2014 10:46:38 +0200 Subject: [PATCH] [#3597] Generate table and column comments also for PostgreSQL - Regenerated schema --- .../postgres/generatedclasses/Tables.java | 12 +++--- .../generatedclasses/tables/TAuthor.java | 30 ++++++++------- .../generatedclasses/tables/TBook.java | 38 ++++++++++--------- .../generatedclasses/tables/TBookStore.java | 10 +++-- .../tables/TBookToBookStore.java | 18 +++++---- .../generatedclasses/tables/TLanguage.java | 18 +++++---- .../generatedclasses/tables/XUnused.java | 6 ++- .../tables/interfaces/ITAuthor.java | 14 ++++--- .../tables/interfaces/ITBook.java | 18 +++++---- .../tables/interfaces/ITBookStore.java | 4 +- .../tables/interfaces/ITBookToBookStore.java | 8 ++-- .../tables/interfaces/ITLanguage.java | 8 ++-- .../tables/interfaces/IXUnused.java | 2 + .../tables/pojos/TAuthor.java | 4 +- .../generatedclasses/tables/pojos/TBook.java | 4 +- .../tables/pojos/TBookStore.java | 4 +- .../tables/pojos/TBookToBookStore.java | 4 +- .../tables/pojos/TLanguage.java | 4 +- .../tables/pojos/XUnused.java | 4 +- .../tables/records/TAuthorRecord.java | 28 +++++++------- .../tables/records/TBookRecord.java | 36 +++++++++--------- .../tables/records/TBookStoreRecord.java | 8 ++-- .../records/TBookToBookStoreRecord.java | 16 ++++---- .../tables/records/TLanguageRecord.java | 16 ++++---- .../tables/records/XUnusedRecord.java | 4 +- 25 files changed, 183 insertions(+), 135 deletions(-) diff --git a/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/Tables.java b/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/Tables.java index d4daeec1e2..f644582c31 100644 --- a/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/Tables.java +++ b/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/Tables.java @@ -87,22 +87,22 @@ public class Tables { public static final org.jooq.test.postgres.generatedclasses.tables.TArrays T_ARRAYS = org.jooq.test.postgres.generatedclasses.tables.TArrays.T_ARRAYS; /** - * The table public.t_author + * An entity holding authors of books */ public static final org.jooq.test.postgres.generatedclasses.tables.TAuthor T_AUTHOR = org.jooq.test.postgres.generatedclasses.tables.TAuthor.T_AUTHOR; /** - * The table public.t_book + * An entity holding books */ public static final org.jooq.test.postgres.generatedclasses.tables.TBook T_BOOK = org.jooq.test.postgres.generatedclasses.tables.TBook.T_BOOK; /** - * The table public.t_book_store + * A book store */ public static final org.jooq.test.postgres.generatedclasses.tables.TBookStore T_BOOK_STORE = org.jooq.test.postgres.generatedclasses.tables.TBookStore.T_BOOK_STORE; /** - * The table public.t_book_to_book_store + * An m:n relation between books and book stores */ public static final org.jooq.test.postgres.generatedclasses.tables.TBookToBookStore T_BOOK_TO_BOOK_STORE = org.jooq.test.postgres.generatedclasses.tables.TBookToBookStore.T_BOOK_TO_BOOK_STORE; @@ -157,7 +157,7 @@ public class Tables { public static final org.jooq.test.postgres.generatedclasses.tables.TInheritanceAll T_INHERITANCE_ALL = org.jooq.test.postgres.generatedclasses.tables.TInheritanceAll.T_INHERITANCE_ALL; /** - * The table public.t_language + * An entity holding language master data */ public static final org.jooq.test.postgres.generatedclasses.tables.TLanguage T_LANGUAGE = org.jooq.test.postgres.generatedclasses.tables.TLanguage.T_LANGUAGE; @@ -212,7 +212,7 @@ public class Tables { public static final org.jooq.test.postgres.generatedclasses.tables.XTestCase_85 X_TEST_CASE_85 = org.jooq.test.postgres.generatedclasses.tables.XTestCase_85.X_TEST_CASE_85; /** - * The table public.x_unused + * An unused table in the same schema. */ public static final org.jooq.test.postgres.generatedclasses.tables.XUnused X_UNUSED = org.jooq.test.postgres.generatedclasses.tables.XUnused.X_UNUSED; } diff --git a/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/TAuthor.java b/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/TAuthor.java index 8252a6f0c9..b660932dde 100644 --- a/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/TAuthor.java +++ b/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/TAuthor.java @@ -5,11 +5,13 @@ package org.jooq.test.postgres.generatedclasses.tables; /** * This class is generated by jOOQ. + * + * An entity holding authors of books */ @java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" }) public class TAuthor extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = 364488020; + private static final long serialVersionUID = -1467463112; /** * The singleton instance of public.t_author @@ -25,34 +27,34 @@ public class TAuthor extends org.jooq.impl.TableImplpublic.t_author.id. + * The column public.t_author.id. The author ID */ - public final org.jooq.TableField ID = createField("id", org.jooq.impl.SQLDataType.INTEGER.nullable(false), this, ""); + public final org.jooq.TableField ID = createField("id", org.jooq.impl.SQLDataType.INTEGER.nullable(false), this, "The author ID"); /** - * The column public.t_author.first_name. + * The column public.t_author.first_name. The author's first name */ - public final org.jooq.TableField FIRST_NAME = createField("first_name", org.jooq.impl.SQLDataType.VARCHAR.length(50), this, ""); + public final org.jooq.TableField FIRST_NAME = createField("first_name", org.jooq.impl.SQLDataType.VARCHAR.length(50), this, "The author's first name"); /** - * The column public.t_author.last_name. + * The column public.t_author.last_name. The author's last name */ - public final org.jooq.TableField LAST_NAME = createField("last_name", org.jooq.impl.SQLDataType.VARCHAR.length(50).nullable(false), this, ""); + public final org.jooq.TableField LAST_NAME = createField("last_name", org.jooq.impl.SQLDataType.VARCHAR.length(50).nullable(false), this, "The author's last name"); /** - * The column public.t_author.date_of_birth. + * The column public.t_author.date_of_birth. The author's date of birth */ - public final org.jooq.TableField DATE_OF_BIRTH = createField("date_of_birth", org.jooq.impl.SQLDataType.DATE, this, ""); + public final org.jooq.TableField DATE_OF_BIRTH = createField("date_of_birth", org.jooq.impl.SQLDataType.DATE, this, "The author's date of birth"); /** - * The column public.t_author.year_of_birth. + * The column public.t_author.year_of_birth. The author's year of birth */ - public final org.jooq.TableField YEAR_OF_BIRTH = createField("year_of_birth", org.jooq.impl.SQLDataType.INTEGER, this, ""); + public final org.jooq.TableField YEAR_OF_BIRTH = createField("year_of_birth", org.jooq.impl.SQLDataType.INTEGER, this, "The author's year of birth"); /** - * The column public.t_author.address. + * The column public.t_author.address. The author's address */ - public final org.jooq.TableField ADDRESS = createField("address", org.jooq.test.postgres.generatedclasses.udt.UAddressType.U_ADDRESS_TYPE.getDataType(), this, ""); + public final org.jooq.TableField ADDRESS = createField("address", org.jooq.test.postgres.generatedclasses.udt.UAddressType.U_ADDRESS_TYPE.getDataType(), this, "The author's address"); /** * Create a public.t_author table reference @@ -73,7 +75,7 @@ public class TAuthor extends org.jooq.impl.TableImpl aliased, org.jooq.Field[] parameters) { - super(alias, org.jooq.test.postgres.generatedclasses.Public.PUBLIC, aliased, parameters, ""); + super(alias, org.jooq.test.postgres.generatedclasses.Public.PUBLIC, aliased, parameters, "An entity holding authors of books"); } /** diff --git a/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/TBook.java b/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/TBook.java index 3b85858b58..a3a4a95e93 100644 --- a/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/TBook.java +++ b/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/TBook.java @@ -5,11 +5,13 @@ package org.jooq.test.postgres.generatedclasses.tables; /** * This class is generated by jOOQ. + * + * An entity holding books */ @java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" }) public class TBook extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = -1311669809; + private static final long serialVersionUID = -1635792601; /** * The singleton instance of public.t_book @@ -25,14 +27,14 @@ public class TBook extends org.jooq.impl.TableImplpublic.t_book.id. + * The column public.t_book.id. The book ID */ - public final org.jooq.TableField ID = createField("id", org.jooq.impl.SQLDataType.INTEGER.nullable(false), this, ""); + public final org.jooq.TableField ID = createField("id", org.jooq.impl.SQLDataType.INTEGER.nullable(false), this, "The book ID"); /** - * The column public.t_book.author_id. + * The column public.t_book.author_id. The author ID in entity 'author' */ - public final org.jooq.TableField AUTHOR_ID = createField("author_id", org.jooq.impl.SQLDataType.INTEGER.nullable(false), this, ""); + public final org.jooq.TableField AUTHOR_ID = createField("author_id", org.jooq.impl.SQLDataType.INTEGER.nullable(false), this, "The author ID in entity 'author'"); /** * The column public.t_book.co_author_id. @@ -45,34 +47,34 @@ public class TBook extends org.jooq.impl.TableImpl DETAILS_ID = createField("details_id", org.jooq.impl.SQLDataType.INTEGER, this, ""); /** - * The column public.t_book.title. + * The column public.t_book.title. The book's title */ - public final org.jooq.TableField TITLE = createField("title", org.jooq.impl.SQLDataType.VARCHAR.length(400).nullable(false), this, ""); + public final org.jooq.TableField TITLE = createField("title", org.jooq.impl.SQLDataType.VARCHAR.length(400).nullable(false), this, "The book's title"); /** - * The column public.t_book.published_in. + * The column public.t_book.published_in. The year the book was published in */ - public final org.jooq.TableField PUBLISHED_IN = createField("published_in", org.jooq.impl.SQLDataType.INTEGER.nullable(false), this, ""); + public final org.jooq.TableField PUBLISHED_IN = createField("published_in", org.jooq.impl.SQLDataType.INTEGER.nullable(false), this, "The year the book was published in"); /** - * The column public.t_book.language_id. + * The column public.t_book.language_id. The language of the book */ - public final org.jooq.TableField LANGUAGE_ID = createField("language_id", org.jooq.impl.SQLDataType.INTEGER.nullable(false).defaulted(true), this, ""); + public final org.jooq.TableField LANGUAGE_ID = createField("language_id", org.jooq.impl.SQLDataType.INTEGER.nullable(false).defaulted(true), this, "The language of the book"); /** - * The column public.t_book.content_text. + * The column public.t_book.content_text. Some textual content of the book */ - public final org.jooq.TableField CONTENT_TEXT = createField("content_text", org.jooq.impl.SQLDataType.CLOB, this, ""); + public final org.jooq.TableField CONTENT_TEXT = createField("content_text", org.jooq.impl.SQLDataType.CLOB, this, "Some textual content of the book"); /** - * The column public.t_book.content_pdf. + * The column public.t_book.content_pdf. Some binary content of the book */ - public final org.jooq.TableField CONTENT_PDF = createField("content_pdf", org.jooq.impl.SQLDataType.BLOB, this, ""); + public final org.jooq.TableField CONTENT_PDF = createField("content_pdf", org.jooq.impl.SQLDataType.BLOB, this, "Some binary content of the book"); /** - * The column public.t_book.status. + * The column public.t_book.status. The book's stock status */ - public final org.jooq.TableField STATUS = createField("status", org.jooq.util.postgres.PostgresDataType.VARCHAR.asEnumDataType(org.jooq.test.postgres.generatedclasses.enums.UBookStatus.class), this, ""); + public final org.jooq.TableField STATUS = createField("status", org.jooq.util.postgres.PostgresDataType.VARCHAR.asEnumDataType(org.jooq.test.postgres.generatedclasses.enums.UBookStatus.class), this, "The book's stock status"); /** * Create a public.t_book table reference @@ -93,7 +95,7 @@ public class TBook extends org.jooq.impl.TableImpl aliased, org.jooq.Field[] parameters) { - super(alias, org.jooq.test.postgres.generatedclasses.Public.PUBLIC, aliased, parameters, ""); + super(alias, org.jooq.test.postgres.generatedclasses.Public.PUBLIC, aliased, parameters, "An entity holding books"); } /** diff --git a/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/TBookStore.java b/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/TBookStore.java index 28563e9632..488118084c 100644 --- a/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/TBookStore.java +++ b/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/TBookStore.java @@ -5,11 +5,13 @@ package org.jooq.test.postgres.generatedclasses.tables; /** * This class is generated by jOOQ. + * + * A book store */ @java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" }) public class TBookStore extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = 78051787; + private static final long serialVersionUID = 1499109959; /** * The singleton instance of public.t_book_store @@ -25,9 +27,9 @@ public class TBookStore extends org.jooq.impl.TableImplpublic.t_book_store.name. + * The column public.t_book_store.name. The books store name */ - public final org.jooq.TableField NAME = createField("name", org.jooq.impl.SQLDataType.VARCHAR.length(400).nullable(false), this, ""); + public final org.jooq.TableField NAME = createField("name", org.jooq.impl.SQLDataType.VARCHAR.length(400).nullable(false), this, "The books store name"); /** * Create a public.t_book_store table reference @@ -48,7 +50,7 @@ public class TBookStore extends org.jooq.impl.TableImpl aliased, org.jooq.Field[] parameters) { - super(alias, org.jooq.test.postgres.generatedclasses.Public.PUBLIC, aliased, parameters, ""); + super(alias, org.jooq.test.postgres.generatedclasses.Public.PUBLIC, aliased, parameters, "A book store"); } /** diff --git a/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/TBookToBookStore.java b/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/TBookToBookStore.java index 39424fa70c..548de0718c 100644 --- a/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/TBookToBookStore.java +++ b/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/TBookToBookStore.java @@ -5,11 +5,13 @@ package org.jooq.test.postgres.generatedclasses.tables; /** * This class is generated by jOOQ. + * + * An m:n relation between books and book stores */ @java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" }) public class TBookToBookStore extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = -663205095; + private static final long serialVersionUID = -38592009; /** * The singleton instance of public.t_book_to_book_store @@ -25,19 +27,19 @@ public class TBookToBookStore extends org.jooq.impl.TableImplpublic.t_book_to_book_store.book_store_name. + * The column public.t_book_to_book_store.book_store_name. The book store name */ - public final org.jooq.TableField BOOK_STORE_NAME = createField("book_store_name", org.jooq.impl.SQLDataType.VARCHAR.length(400).nullable(false), this, ""); + public final org.jooq.TableField BOOK_STORE_NAME = createField("book_store_name", org.jooq.impl.SQLDataType.VARCHAR.length(400).nullable(false), this, "The book store name"); /** - * The column public.t_book_to_book_store.book_id. + * The column public.t_book_to_book_store.book_id. The book ID */ - public final org.jooq.TableField BOOK_ID = createField("book_id", org.jooq.impl.SQLDataType.INTEGER.nullable(false), this, ""); + public final org.jooq.TableField BOOK_ID = createField("book_id", org.jooq.impl.SQLDataType.INTEGER.nullable(false), this, "The book ID"); /** - * The column public.t_book_to_book_store.stock. + * The column public.t_book_to_book_store.stock. The number of books on stock */ - public final org.jooq.TableField STOCK = createField("stock", org.jooq.impl.SQLDataType.INTEGER, this, ""); + public final org.jooq.TableField STOCK = createField("stock", org.jooq.impl.SQLDataType.INTEGER, this, "The number of books on stock"); /** * Create a public.t_book_to_book_store table reference @@ -58,7 +60,7 @@ public class TBookToBookStore extends org.jooq.impl.TableImpl aliased, org.jooq.Field[] parameters) { - super(alias, org.jooq.test.postgres.generatedclasses.Public.PUBLIC, aliased, parameters, ""); + super(alias, org.jooq.test.postgres.generatedclasses.Public.PUBLIC, aliased, parameters, "An m:n relation between books and book stores"); } /** diff --git a/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/TLanguage.java b/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/TLanguage.java index 924bf85cc1..b00ea3ac5c 100644 --- a/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/TLanguage.java +++ b/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/TLanguage.java @@ -5,11 +5,13 @@ package org.jooq.test.postgres.generatedclasses.tables; /** * This class is generated by jOOQ. + * + * An entity holding language master data */ @java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" }) public class TLanguage extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = 776234141; + private static final long serialVersionUID = 1999147527; /** * The singleton instance of public.t_language @@ -25,14 +27,14 @@ public class TLanguage extends org.jooq.impl.TableImplpublic.t_language.cd. + * The column public.t_language.cd. The language ISO code */ - public final org.jooq.TableField CD = createField("cd", org.jooq.impl.SQLDataType.CHAR.length(2).nullable(false), this, ""); + public final org.jooq.TableField CD = createField("cd", org.jooq.impl.SQLDataType.CHAR.length(2).nullable(false), this, "The language ISO code"); /** - * The column public.t_language.description. + * The column public.t_language.description. The language description */ - public final org.jooq.TableField DESCRIPTION = createField("description", org.jooq.impl.SQLDataType.VARCHAR.length(50), this, ""); + public final org.jooq.TableField DESCRIPTION = createField("description", org.jooq.impl.SQLDataType.VARCHAR.length(50), this, "The language description"); /** * The column public.t_language.description_english. @@ -40,9 +42,9 @@ public class TLanguage extends org.jooq.impl.TableImpl DESCRIPTION_ENGLISH = createField("description_english", org.jooq.impl.SQLDataType.VARCHAR.length(50), this, ""); /** - * The column public.t_language.id. + * The column public.t_language.id. The language ID */ - public final org.jooq.TableField ID = createField("id", org.jooq.impl.SQLDataType.INTEGER.nullable(false), this, ""); + public final org.jooq.TableField ID = createField("id", org.jooq.impl.SQLDataType.INTEGER.nullable(false), this, "The language ID"); /** * Create a public.t_language table reference @@ -63,7 +65,7 @@ public class TLanguage extends org.jooq.impl.TableImpl aliased, org.jooq.Field[] parameters) { - super(alias, org.jooq.test.postgres.generatedclasses.Public.PUBLIC, aliased, parameters, ""); + super(alias, org.jooq.test.postgres.generatedclasses.Public.PUBLIC, aliased, parameters, "An entity holding language master data"); } /** diff --git a/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/XUnused.java b/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/XUnused.java index b9cd8914fd..b93911646a 100644 --- a/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/XUnused.java +++ b/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/XUnused.java @@ -5,11 +5,13 @@ package org.jooq.test.postgres.generatedclasses.tables; /** * This class is generated by jOOQ. + * + * An unused table in the same schema. */ @java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" }) public class XUnused extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = 88962733; + private static final long serialVersionUID = -300074305; /** * The singleton instance of public.x_unused @@ -118,7 +120,7 @@ public class XUnused extends org.jooq.impl.TableImpl aliased, org.jooq.Field[] parameters) { - super(alias, org.jooq.test.postgres.generatedclasses.Public.PUBLIC, aliased, parameters, ""); + super(alias, org.jooq.test.postgres.generatedclasses.Public.PUBLIC, aliased, parameters, "An unused table in the same schema."); } /** diff --git a/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/interfaces/ITAuthor.java b/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/interfaces/ITAuthor.java index 0322009b03..4726940c58 100644 --- a/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/interfaces/ITAuthor.java +++ b/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/interfaces/ITAuthor.java @@ -5,37 +5,39 @@ package org.jooq.test.postgres.generatedclasses.tables.interfaces; /** * This class is generated by jOOQ. + * + * An entity holding authors of books */ @java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" }) public interface ITAuthor extends java.io.Serializable { /** - * Getter for public.t_author.id. + * Getter for public.t_author.id. The author ID */ public java.lang.Integer getId(); /** - * Getter for public.t_author.first_name. + * Getter for public.t_author.first_name. The author's first name */ public java.lang.String getFirstName(); /** - * Getter for public.t_author.last_name. + * Getter for public.t_author.last_name. The author's last name */ public java.lang.String getLastName(); /** - * Getter for public.t_author.date_of_birth. + * Getter for public.t_author.date_of_birth. The author's date of birth */ public java.sql.Date getDateOfBirth(); /** - * Getter for public.t_author.year_of_birth. + * Getter for public.t_author.year_of_birth. The author's year of birth */ public java.lang.Integer getYearOfBirth(); /** - * Getter for public.t_author.address. + * Getter for public.t_author.address. The author's address */ public org.jooq.test.postgres.generatedclasses.udt.interfaces.IUAddressType getAddress(); } diff --git a/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/interfaces/ITBook.java b/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/interfaces/ITBook.java index 36f48485b4..53f0dbc128 100644 --- a/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/interfaces/ITBook.java +++ b/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/interfaces/ITBook.java @@ -5,17 +5,19 @@ package org.jooq.test.postgres.generatedclasses.tables.interfaces; /** * This class is generated by jOOQ. + * + * An entity holding books */ @java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" }) public interface ITBook extends java.io.Serializable { /** - * Getter for public.t_book.id. + * Getter for public.t_book.id. The book ID */ public java.lang.Integer getId(); /** - * Getter for public.t_book.author_id. + * Getter for public.t_book.author_id. The author ID in entity 'author' */ public java.lang.Integer getAuthorId(); @@ -30,32 +32,32 @@ public interface ITBook extends java.io.Serializable { public java.lang.Integer getDetailsId(); /** - * Getter for public.t_book.title. + * Getter for public.t_book.title. The book's title */ public java.lang.String getTitle(); /** - * Getter for public.t_book.published_in. + * Getter for public.t_book.published_in. The year the book was published in */ public java.lang.Integer getPublishedIn(); /** - * Getter for public.t_book.language_id. + * Getter for public.t_book.language_id. The language of the book */ public java.lang.Integer getLanguageId(); /** - * Getter for public.t_book.content_text. + * Getter for public.t_book.content_text. Some textual content of the book */ public java.lang.String getContentText(); /** - * Getter for public.t_book.content_pdf. + * Getter for public.t_book.content_pdf. Some binary content of the book */ public byte[] getContentPdf(); /** - * Getter for public.t_book.status. + * Getter for public.t_book.status. The book's stock status */ public org.jooq.test.postgres.generatedclasses.enums.UBookStatus getStatus(); } diff --git a/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/interfaces/ITBookStore.java b/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/interfaces/ITBookStore.java index d4b04d7424..2989319cd7 100644 --- a/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/interfaces/ITBookStore.java +++ b/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/interfaces/ITBookStore.java @@ -5,12 +5,14 @@ package org.jooq.test.postgres.generatedclasses.tables.interfaces; /** * This class is generated by jOOQ. + * + * A book store */ @java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" }) public interface ITBookStore extends java.io.Serializable { /** - * Getter for public.t_book_store.name. + * Getter for public.t_book_store.name. The books store name */ public java.lang.String getName(); } diff --git a/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/interfaces/ITBookToBookStore.java b/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/interfaces/ITBookToBookStore.java index 5185b0df45..f85263e3f5 100644 --- a/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/interfaces/ITBookToBookStore.java +++ b/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/interfaces/ITBookToBookStore.java @@ -5,22 +5,24 @@ package org.jooq.test.postgres.generatedclasses.tables.interfaces; /** * This class is generated by jOOQ. + * + * An m:n relation between books and book stores */ @java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" }) public interface ITBookToBookStore extends java.io.Serializable { /** - * Getter for public.t_book_to_book_store.book_store_name. + * Getter for public.t_book_to_book_store.book_store_name. The book store name */ public java.lang.String getBookStoreName(); /** - * Getter for public.t_book_to_book_store.book_id. + * Getter for public.t_book_to_book_store.book_id. The book ID */ public java.lang.Integer getBookId(); /** - * Getter for public.t_book_to_book_store.stock. + * Getter for public.t_book_to_book_store.stock. The number of books on stock */ public java.lang.Integer getStock(); } diff --git a/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/interfaces/ITLanguage.java b/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/interfaces/ITLanguage.java index f68d5a1830..0cc7858dc5 100644 --- a/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/interfaces/ITLanguage.java +++ b/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/interfaces/ITLanguage.java @@ -5,17 +5,19 @@ package org.jooq.test.postgres.generatedclasses.tables.interfaces; /** * This class is generated by jOOQ. + * + * An entity holding language master data */ @java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" }) public interface ITLanguage extends java.io.Serializable { /** - * Getter for public.t_language.cd. + * Getter for public.t_language.cd. The language ISO code */ public java.lang.String getCd(); /** - * Getter for public.t_language.description. + * Getter for public.t_language.description. The language description */ public java.lang.String getDescription(); @@ -25,7 +27,7 @@ public interface ITLanguage extends java.io.Serializable { public java.lang.String getDescriptionEnglish(); /** - * Getter for public.t_language.id. + * Getter for public.t_language.id. The language ID */ public java.lang.Integer getId(); } diff --git a/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/interfaces/IXUnused.java b/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/interfaces/IXUnused.java index c9b4163919..155b28ed96 100644 --- a/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/interfaces/IXUnused.java +++ b/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/interfaces/IXUnused.java @@ -5,6 +5,8 @@ package org.jooq.test.postgres.generatedclasses.tables.interfaces; /** * This class is generated by jOOQ. + * + * An unused table in the same schema. */ @java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" }) public interface IXUnused extends java.io.Serializable { diff --git a/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/pojos/TAuthor.java b/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/pojos/TAuthor.java index 19cb690486..b60fc56eb0 100644 --- a/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/pojos/TAuthor.java +++ b/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/pojos/TAuthor.java @@ -5,11 +5,13 @@ package org.jooq.test.postgres.generatedclasses.tables.pojos; /** * This class is generated by jOOQ. + * + * An entity holding authors of books */ @java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" }) public class TAuthor implements org.jooq.test.postgres.generatedclasses.tables.interfaces.ITAuthor { - private static final long serialVersionUID = 979289363; + private static final long serialVersionUID = -1771521619; private final java.lang.Integer id; private final java.lang.String firstName; diff --git a/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/pojos/TBook.java b/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/pojos/TBook.java index c62ebbea3f..7b9df125b1 100644 --- a/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/pojos/TBook.java +++ b/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/pojos/TBook.java @@ -5,11 +5,13 @@ package org.jooq.test.postgres.generatedclasses.tables.pojos; /** * This class is generated by jOOQ. + * + * An entity holding books */ @java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" }) public class TBook implements org.jooq.test.postgres.generatedclasses.tables.interfaces.ITBook { - private static final long serialVersionUID = -1105302064; + private static final long serialVersionUID = -449599885; private final java.lang.Integer id; private final java.lang.Integer authorId; diff --git a/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/pojos/TBookStore.java b/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/pojos/TBookStore.java index 8a6c703b6d..41819f106e 100644 --- a/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/pojos/TBookStore.java +++ b/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/pojos/TBookStore.java @@ -5,11 +5,13 @@ package org.jooq.test.postgres.generatedclasses.tables.pojos; /** * This class is generated by jOOQ. + * + * A book store */ @java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" }) public class TBookStore implements org.jooq.test.postgres.generatedclasses.tables.interfaces.ITBookStore { - private static final long serialVersionUID = 1381788466; + private static final long serialVersionUID = -1156548273; private final java.lang.String name; diff --git a/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/pojos/TBookToBookStore.java b/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/pojos/TBookToBookStore.java index 7ef9df43f5..da04348de0 100644 --- a/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/pojos/TBookToBookStore.java +++ b/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/pojos/TBookToBookStore.java @@ -5,11 +5,13 @@ package org.jooq.test.postgres.generatedclasses.tables.pojos; /** * This class is generated by jOOQ. + * + * An m:n relation between books and book stores */ @java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" }) public class TBookToBookStore implements org.jooq.test.postgres.generatedclasses.tables.interfaces.ITBookToBookStore { - private static final long serialVersionUID = 934579856; + private static final long serialVersionUID = -734272688; private final java.lang.String bookStoreName; private final java.lang.Integer bookId; diff --git a/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/pojos/TLanguage.java b/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/pojos/TLanguage.java index 2dbca7b987..8f8f81828c 100644 --- a/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/pojos/TLanguage.java +++ b/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/pojos/TLanguage.java @@ -5,11 +5,13 @@ package org.jooq.test.postgres.generatedclasses.tables.pojos; /** * This class is generated by jOOQ. + * + * An entity holding language master data */ @java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" }) public class TLanguage implements org.jooq.test.postgres.generatedclasses.tables.interfaces.ITLanguage { - private static final long serialVersionUID = 1580552657; + private static final long serialVersionUID = -1303646382; private final java.lang.String cd; private final java.lang.String description; diff --git a/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/pojos/XUnused.java b/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/pojos/XUnused.java index d555df6294..46aa8b4fe1 100644 --- a/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/pojos/XUnused.java +++ b/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/pojos/XUnused.java @@ -5,11 +5,13 @@ package org.jooq.test.postgres.generatedclasses.tables.pojos; /** * This class is generated by jOOQ. + * + * An unused table in the same schema. */ @java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" }) public class XUnused implements org.jooq.test.postgres.generatedclasses.tables.interfaces.IXUnused { - private static final long serialVersionUID = -1995298873; + private static final long serialVersionUID = 1158267803; private final java.lang.Integer id; private final java.lang.String name; diff --git a/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/records/TAuthorRecord.java b/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/records/TAuthorRecord.java index 174c768afc..1b0b7b04ea 100644 --- a/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/records/TAuthorRecord.java +++ b/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/records/TAuthorRecord.java @@ -5,14 +5,16 @@ package org.jooq.test.postgres.generatedclasses.tables.records; /** * This class is generated by jOOQ. + * + * An entity holding authors of books */ @java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" }) public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImpl implements org.jooq.Record6, org.jooq.test.postgres.generatedclasses.tables.interfaces.ITAuthor { - private static final long serialVersionUID = -679684875; + private static final long serialVersionUID = 104350721; /** - * Setter for public.t_author.id. + * Setter for public.t_author.id. The author ID */ public TAuthorRecord setId(java.lang.Integer value) { setValue(0, value); @@ -20,7 +22,7 @@ public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImplpublic.t_author.id. + * Getter for public.t_author.id. The author ID */ @Override public java.lang.Integer getId() { @@ -28,7 +30,7 @@ public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImplpublic.t_author.first_name. + * Setter for public.t_author.first_name. The author's first name */ public TAuthorRecord setFirstName(java.lang.String value) { setValue(1, value); @@ -36,7 +38,7 @@ public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImplpublic.t_author.first_name. + * Getter for public.t_author.first_name. The author's first name */ @Override public java.lang.String getFirstName() { @@ -44,7 +46,7 @@ public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImplpublic.t_author.last_name. + * Setter for public.t_author.last_name. The author's last name */ public TAuthorRecord setLastName(java.lang.String value) { setValue(2, value); @@ -52,7 +54,7 @@ public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImplpublic.t_author.last_name. + * Getter for public.t_author.last_name. The author's last name */ @Override public java.lang.String getLastName() { @@ -60,7 +62,7 @@ public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImplpublic.t_author.date_of_birth. + * Setter for public.t_author.date_of_birth. The author's date of birth */ public TAuthorRecord setDateOfBirth(java.sql.Date value) { setValue(3, value); @@ -68,7 +70,7 @@ public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImplpublic.t_author.date_of_birth. + * Getter for public.t_author.date_of_birth. The author's date of birth */ @Override public java.sql.Date getDateOfBirth() { @@ -76,7 +78,7 @@ public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImplpublic.t_author.year_of_birth. + * Setter for public.t_author.year_of_birth. The author's year of birth */ public TAuthorRecord setYearOfBirth(java.lang.Integer value) { setValue(4, value); @@ -84,7 +86,7 @@ public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImplpublic.t_author.year_of_birth. + * Getter for public.t_author.year_of_birth. The author's year of birth */ @Override public java.lang.Integer getYearOfBirth() { @@ -92,7 +94,7 @@ public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImplpublic.t_author.address. + * Setter for public.t_author.address. The author's address */ public TAuthorRecord setAddress(org.jooq.test.postgres.generatedclasses.udt.records.UAddressTypeRecord value) { setValue(5, value); @@ -100,7 +102,7 @@ public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImplpublic.t_author.address. + * Getter for public.t_author.address. The author's address */ @Override public org.jooq.test.postgres.generatedclasses.udt.records.UAddressTypeRecord getAddress() { diff --git a/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/records/TBookRecord.java b/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/records/TBookRecord.java index 15e017c85f..94911de546 100644 --- a/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/records/TBookRecord.java +++ b/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/records/TBookRecord.java @@ -5,14 +5,16 @@ package org.jooq.test.postgres.generatedclasses.tables.records; /** * This class is generated by jOOQ. + * + * An entity holding books */ @java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" }) public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl implements org.jooq.Record10, org.jooq.test.postgres.generatedclasses.tables.interfaces.ITBook { - private static final long serialVersionUID = 182002655; + private static final long serialVersionUID = -2143372820; /** - * Setter for public.t_book.id. + * Setter for public.t_book.id. The book ID */ public TBookRecord setId(java.lang.Integer value) { setValue(0, value); @@ -20,7 +22,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImplpublic.t_book.id. + * Getter for public.t_book.id. The book ID */ @Override public java.lang.Integer getId() { @@ -28,7 +30,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImplpublic.t_book.author_id. + * Setter for public.t_book.author_id. The author ID in entity 'author' */ public TBookRecord setAuthorId(java.lang.Integer value) { setValue(1, value); @@ -36,7 +38,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImplpublic.t_book.author_id. + * Getter for public.t_book.author_id. The author ID in entity 'author' */ @Override public java.lang.Integer getAuthorId() { @@ -76,7 +78,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImplpublic.t_book.title. + * Setter for public.t_book.title. The book's title */ public TBookRecord setTitle(java.lang.String value) { setValue(4, value); @@ -84,7 +86,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImplpublic.t_book.title. + * Getter for public.t_book.title. The book's title */ @Override public java.lang.String getTitle() { @@ -92,7 +94,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImplpublic.t_book.published_in. + * Setter for public.t_book.published_in. The year the book was published in */ public TBookRecord setPublishedIn(java.lang.Integer value) { setValue(5, value); @@ -100,7 +102,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImplpublic.t_book.published_in. + * Getter for public.t_book.published_in. The year the book was published in */ @Override public java.lang.Integer getPublishedIn() { @@ -108,7 +110,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImplpublic.t_book.language_id. + * Setter for public.t_book.language_id. The language of the book */ public TBookRecord setLanguageId(java.lang.Integer value) { setValue(6, value); @@ -116,7 +118,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImplpublic.t_book.language_id. + * Getter for public.t_book.language_id. The language of the book */ @Override public java.lang.Integer getLanguageId() { @@ -124,7 +126,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImplpublic.t_book.content_text. + * Setter for public.t_book.content_text. Some textual content of the book */ public TBookRecord setContentText(java.lang.String value) { setValue(7, value); @@ -132,7 +134,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImplpublic.t_book.content_text. + * Getter for public.t_book.content_text. Some textual content of the book */ @Override public java.lang.String getContentText() { @@ -140,7 +142,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImplpublic.t_book.content_pdf. + * Setter for public.t_book.content_pdf. Some binary content of the book */ public TBookRecord setContentPdf(byte[] value) { setValue(8, value); @@ -148,7 +150,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImplpublic.t_book.content_pdf. + * Getter for public.t_book.content_pdf. Some binary content of the book */ @Override public byte[] getContentPdf() { @@ -156,7 +158,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImplpublic.t_book.status. + * Setter for public.t_book.status. The book's stock status */ public TBookRecord setStatus(org.jooq.test.postgres.generatedclasses.enums.UBookStatus value) { setValue(9, value); @@ -164,7 +166,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImplpublic.t_book.status. + * Getter for public.t_book.status. The book's stock status */ @Override public org.jooq.test.postgres.generatedclasses.enums.UBookStatus getStatus() { diff --git a/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/records/TBookStoreRecord.java b/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/records/TBookStoreRecord.java index 5ced63c214..00e4204594 100644 --- a/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/records/TBookStoreRecord.java +++ b/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/records/TBookStoreRecord.java @@ -5,14 +5,16 @@ package org.jooq.test.postgres.generatedclasses.tables.records; /** * This class is generated by jOOQ. + * + * A book store */ @java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" }) public class TBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl implements org.jooq.Record1, org.jooq.test.postgres.generatedclasses.tables.interfaces.ITBookStore { - private static final long serialVersionUID = 1284917864; + private static final long serialVersionUID = -1469049359; /** - * Setter for public.t_book_store.name. + * Setter for public.t_book_store.name. The books store name */ public TBookStoreRecord setName(java.lang.String value) { setValue(0, value); @@ -20,7 +22,7 @@ public class TBookStoreRecord extends org.jooq.impl.UpdatableRecordImplpublic.t_book_store.name. + * Getter for public.t_book_store.name. The books store name */ @Override public java.lang.String getName() { diff --git a/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/records/TBookToBookStoreRecord.java b/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/records/TBookToBookStoreRecord.java index aabe20508f..58c26f91ed 100644 --- a/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/records/TBookToBookStoreRecord.java +++ b/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/records/TBookToBookStoreRecord.java @@ -5,14 +5,16 @@ package org.jooq.test.postgres.generatedclasses.tables.records; /** * This class is generated by jOOQ. + * + * An m:n relation between books and book stores */ @java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" }) public class TBookToBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl implements org.jooq.Record3, org.jooq.test.postgres.generatedclasses.tables.interfaces.ITBookToBookStore { - private static final long serialVersionUID = -2046659538; + private static final long serialVersionUID = 193454388; /** - * Setter for public.t_book_to_book_store.book_store_name. + * Setter for public.t_book_to_book_store.book_store_name. The book store name */ public TBookToBookStoreRecord setBookStoreName(java.lang.String value) { setValue(0, value); @@ -20,7 +22,7 @@ public class TBookToBookStoreRecord extends org.jooq.impl.UpdatableRecordImplpublic.t_book_to_book_store.book_store_name. + * Getter for public.t_book_to_book_store.book_store_name. The book store name */ @Override public java.lang.String getBookStoreName() { @@ -28,7 +30,7 @@ public class TBookToBookStoreRecord extends org.jooq.impl.UpdatableRecordImplpublic.t_book_to_book_store.book_id. + * Setter for public.t_book_to_book_store.book_id. The book ID */ public TBookToBookStoreRecord setBookId(java.lang.Integer value) { setValue(1, value); @@ -36,7 +38,7 @@ public class TBookToBookStoreRecord extends org.jooq.impl.UpdatableRecordImplpublic.t_book_to_book_store.book_id. + * Getter for public.t_book_to_book_store.book_id. The book ID */ @Override public java.lang.Integer getBookId() { @@ -44,7 +46,7 @@ public class TBookToBookStoreRecord extends org.jooq.impl.UpdatableRecordImplpublic.t_book_to_book_store.stock. + * Setter for public.t_book_to_book_store.stock. The number of books on stock */ public TBookToBookStoreRecord setStock(java.lang.Integer value) { setValue(2, value); @@ -52,7 +54,7 @@ public class TBookToBookStoreRecord extends org.jooq.impl.UpdatableRecordImplpublic.t_book_to_book_store.stock. + * Getter for public.t_book_to_book_store.stock. The number of books on stock */ @Override public java.lang.Integer getStock() { diff --git a/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/records/TLanguageRecord.java b/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/records/TLanguageRecord.java index 1d23af764d..a341c1aec5 100644 --- a/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/records/TLanguageRecord.java +++ b/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/records/TLanguageRecord.java @@ -5,14 +5,16 @@ package org.jooq.test.postgres.generatedclasses.tables.records; /** * This class is generated by jOOQ. + * + * An entity holding language master data */ @java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" }) public class TLanguageRecord extends org.jooq.impl.UpdatableRecordImpl implements org.jooq.Record4, org.jooq.test.postgres.generatedclasses.tables.interfaces.ITLanguage { - private static final long serialVersionUID = -978550168; + private static final long serialVersionUID = -783894559; /** - * Setter for public.t_language.cd. + * Setter for public.t_language.cd. The language ISO code */ public TLanguageRecord setCd(java.lang.String value) { setValue(0, value); @@ -20,7 +22,7 @@ public class TLanguageRecord extends org.jooq.impl.UpdatableRecordImplpublic.t_language.cd. + * Getter for public.t_language.cd. The language ISO code */ @Override public java.lang.String getCd() { @@ -28,7 +30,7 @@ public class TLanguageRecord extends org.jooq.impl.UpdatableRecordImplpublic.t_language.description. + * Setter for public.t_language.description. The language description */ public TLanguageRecord setDescription(java.lang.String value) { setValue(1, value); @@ -36,7 +38,7 @@ public class TLanguageRecord extends org.jooq.impl.UpdatableRecordImplpublic.t_language.description. + * Getter for public.t_language.description. The language description */ @Override public java.lang.String getDescription() { @@ -60,7 +62,7 @@ public class TLanguageRecord extends org.jooq.impl.UpdatableRecordImplpublic.t_language.id. + * Setter for public.t_language.id. The language ID */ public TLanguageRecord setId(java.lang.Integer value) { setValue(3, value); @@ -68,7 +70,7 @@ public class TLanguageRecord extends org.jooq.impl.UpdatableRecordImplpublic.t_language.id. + * Getter for public.t_language.id. The language ID */ @Override public java.lang.Integer getId() { diff --git a/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/records/XUnusedRecord.java b/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/records/XUnusedRecord.java index d9cff1109a..1531d2591f 100644 --- a/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/records/XUnusedRecord.java +++ b/jOOQ-test/src/test/java/org/jooq/test/postgres/generatedclasses/tables/records/XUnusedRecord.java @@ -5,11 +5,13 @@ package org.jooq.test.postgres.generatedclasses.tables.records; /** * This class is generated by jOOQ. + * + * An unused table in the same schema. */ @java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" }) public class XUnusedRecord extends org.jooq.impl.UpdatableRecordImpl implements org.jooq.Record15, org.jooq.test.postgres.generatedclasses.tables.interfaces.IXUnused { - private static final long serialVersionUID = 131102754; + private static final long serialVersionUID = -2085594994; /** * Setter for public.x_unused.id.