Package org.jooq.util.jaxb

Examples of org.jooq.util.jaxb.MasterDataTable


      List<MasterDataTable> masterDataTables = new ArrayList<MasterDataTable>();
      for (String name : defaultString(properties.getProperty("generator.generate.master-data-tables")).split(",")) {
          if (isBlank(name)) continue;

          MasterDataTable table = new MasterDataTable();

          table.setName(name);
          table.setLiteral(properties.getProperty("generator.generate.master-data-table-literal." + name));
          table.setDescription(properties.getProperty("generator.generate.master-data-table-description." + name));

          masterDataTables.add(table);
      }

        List<EnumType> enumTypes = new ArrayList<EnumType>();
View Full Code Here

TOP

Related Classes of org.jooq.util.jaxb.MasterDataTable

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.