Package cn.org.rapid_framework.generator.provider.db.table.model

Examples of cn.org.rapid_framework.generator.provider.db.table.model.Table


public class SimpleTableGeneratorTest extends GeneratorTestCase{

  public void testGenerate() throws Exception{

      System.out.println(TableFactory.getInstance().getAllTables());
    Table table = TableFactory.getInstance().getTable("USER_INFO");
   
    g.addTemplateRootDir(new File("template").getAbsoluteFile());
    g.addTemplateRootDir(new File("plugins/freemarker_html_view/template"));
   
    generateByTable(table);
View Full Code Here


public class FreemarkerHtmlViewGeneratorTest extends GeneratorTestCase{

  public void testGenerate() throws Exception{

    Table table = TableFactory.getInstance().getTable("USER_INFO");
   
    g.addTemplateRootDir(new File("template").getAbsoluteFile());
    g.addTemplateRootDir(new File("plugins/simpletable/template"));
   
    generateByTable(table);
View Full Code Here

public class FlexGeneratorTest extends GeneratorTestCase{

  public void testGenerate() throws Exception{
 
    Table table = TableFactory.getInstance().getTable("USER_INFO");
   
    g.addTemplateRootDir(new File("template").getAbsoluteFile());
//    g.addTemplateRootDir(new File("plugins/flex/template"));
    g.addTemplateRootDir(new File("plugins/flex_cairngorm/template"));
   
View Full Code Here

public class StrutsGeneratorTest extends GeneratorTestCase{

  public void testGenerate() throws Exception{

    Table table = TableFactory.getInstance().getTable("USER_INFO");
   
    g.addTemplateRootDir(new File("template").getAbsoluteFile());
    g.addTemplateRootDir(new File("plugins/struts/template"));
   
    generateByTable(table);
View Full Code Here

public class SpringMVCRestGeneratorTest extends GeneratorTestCase{

  public void testGenerate() throws Exception{
 
    Table table = TableFactory.getInstance().getTable("USER_INFO");
   
    g.addTemplateRootDir(new File("template").getAbsoluteFile());
    g.addTemplateRootDir(new File("plugins/springmvc_rest/template"));
   
    generateByTable(table);
View Full Code Here

public class Struts2GeneratorTest extends GeneratorTestCase{

  public void testGenerate() throws Exception{
   
    Table table = TableFactory.getInstance().getTable("USER_INFO");
   
    g.addTemplateRootDir(new File("template").getAbsoluteFile());
    g.addTemplateRootDir(new File("plugins/struts2/template"));
   
    generateByTable(table);
View Full Code Here

import cn.org.rapid_framework.generator.provider.db.table.model.Table;

public class SpringJdbcGeneratorTest extends GeneratorTestCase{

  public void testGenerate() throws Exception{
    Table table = TableFactory.getInstance().getTable("USER_INFO");
   
    g.addTemplateRootDir(new File("template").getAbsoluteFile());
    g.addTemplateRootDir(new File("plugins/spring_jdbc/template"));
   
    generateByTable(table);
View Full Code Here

  public void testGenerate() throws Exception{
   
    System.out.println(TableFactory.getInstance().getAllTables());
   
    Table table = TableFactory.getInstance().getTable("USER_INFO");
   
    g.addTemplateRootDir(new File("template").getAbsoluteFile());
    g.addTemplateRootDir(new File("plugins/springmvc/template"));
   
    generateByTable(table);
View Full Code Here

public class Ibatis3GeneratorTest extends GeneratorTestCase{

  public void testGenerate() throws Exception{

    Table table = TableFactory.getInstance().getTable("USER_INFO");
   
    g.addTemplateRootDir(new File("template").getAbsoluteFile());
    g.addTemplateRootDir(new File("plugins/ibatis3/template"));
   
    generateByTable(table);
View Full Code Here

public class HibernateGeneratorTest extends GeneratorTestCase{

  public void testGenerate() throws Exception{

    Table table = TableFactory.getInstance().getTable("USER_INFO");
   
    g.addTemplateRootDir(new File("template").getAbsoluteFile());
    g.addTemplateRootDir(new File("plugins/hibernate/template"));
   
    generateByTable(table);
View Full Code Here

TOP

Related Classes of cn.org.rapid_framework.generator.provider.db.table.model.Table

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.