Package org.jboss.forge.scaffold.plugins.meta.model

Examples of org.jboss.forge.scaffold.plugins.meta.model.TField


      addBeanField(name, TClassType.getClass(type));
   }

   public void addBeanField(String name, TClassType type)
   {
      classType.getFields().add(new TField(classType, name, type, Modifier.PRIVATE | Modifier.FINAL));

      TMethod getterMethod = new TMethod(classType, RenderUtil.getGetterName(type, name), type, Modifier.PUBLIC);
      getterMethod.setMethodContents("return this." + name + ";\n");
      classType.getMethods().add(getterMethod);
View Full Code Here

TOP

Related Classes of org.jboss.forge.scaffold.plugins.meta.model.TField

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.