Back to project page innovativeproject-meetingdataexchange.
The source code is released under:
MIT License
If you think the Android project innovativeproject-meetingdataexchange listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/** * This class is generated by jOOQ/*from w w w . j av a2s . co m*/ */ package models; /** * This class is generated by jOOQ. */ @javax.annotation.Generated(value = { "http://www.jooq.org", "3.1.0" }, comments = "This class is generated by jOOQ") @java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" }) public class DefaultSchema extends org.jooq.impl.SchemaImpl { private static final long serialVersionUID = -755409726; /** * The singleton instance of <code></code> */ public static final DefaultSchema DEFAULT_SCHEMA = new DefaultSchema(); /** * No further instances allowed */ private DefaultSchema() { super(""); } @Override public final java.util.List<org.jooq.Table<?>> getTables() { java.util.List result = new java.util.ArrayList(); result.addAll(getTables0()); return result; } private final java.util.List<org.jooq.Table<?>> getTables0() { return java.util.Arrays.<org.jooq.Table<?>>asList( models.tables.Comment.COMMENT, models.tables.File.FILE, models.tables.Meeting.MEETING, models.tables.Meetinguser.MEETINGUSER, models.tables.Session.SESSION, models.tables.User.USER, models.tables.SqliteSequence.SQLITE_SEQUENCE); } }