Package com.ketayao.ketacustom.generate

Examples of com.ketayao.ketacustom.generate.GenerateCode


  }
 
  @Test
  public void testService() {
    try {
      gen = new GenerateCode(FileType.SERVICE);
      gen.generate(table);
    } catch (Exception e) {
      e.printStackTrace();
    }
  }
View Full Code Here


  }
 
  @Test
  public void testServiceImpl() {
    try {
      gen = new GenerateCode(FileType.SERVICE_IMPL);
      gen.generate(table);
    } catch (Exception e) {
      e.printStackTrace();
    }
  }
View Full Code Here

  }
 
  @Test
  public void testController() {
    try {
      gen = new GenerateCode(FileType.CONTROLLER);
      gen.generate(table);
    } catch (Exception e) {
      e.printStackTrace();
    }
  }
View Full Code Here

  }

  @Test
  public void testJspCreate() {
    try {
      gen = new GenerateCode(FileType.JSP_CREATE);
      gen.generate(table);
    } catch (Exception e) {
      e.printStackTrace();
    }
  }
View Full Code Here

  }
 
  @Test
  public void testJspList() {
    try {
      gen = new GenerateCode(FileType.JSP_LIST);
      gen.generate(table);
    } catch (Exception e) {
      e.printStackTrace();
    }
  }
View Full Code Here

  }
 
  @Test
  public void testJspUpdate() {
    try {
      gen = new GenerateCode(FileType.JSP_UPDATE);
      gen.generate(table);
    } catch (Exception e) {
      e.printStackTrace();
    }
  }
View Full Code Here

  }
 
  @Test
  public void testView() {
    try {
      gen = new GenerateCode(FileType.JSP_VIEW);
      gen.generate(table);
    } catch (Exception e) {
      e.printStackTrace();
    }
  }
View Full Code Here

  }
 
  @Test
  public void testEntity() {
    try {
      gen = new GenerateCode(FileType.ENTITY);
      gen.generate(table);
    } catch (Exception e) {
      e.printStackTrace();
    }
  }
View Full Code Here

  }
 
  @Test
  public void testDao() {
    try {
      gen = new GenerateCode(FileType.DAO);
      gen.generate(table);
    } catch (Exception e) {
      e.printStackTrace();
    }
  }
View Full Code Here

TOP

Related Classes of com.ketayao.ketacustom.generate.GenerateCode

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.