TMethod getterMethod = new TMethod(classType, RenderUtil.getGetterName(type, name), type, Modifier.PUBLIC);
getterMethod.setMethodContents("return this." + name + ";\n");
classType.getMethods().add(getterMethod);
TMethod setterMethod = new TMethod(classType, RenderUtil.getSetterName(name), type, Modifier.PUBLIC);
setterMethod.addParameter(name, type, Modifier.FINAL);
setterMethod.setMethodContents("this." + name + " = " + name + ";\n");
classType.getMethods().add(setterMethod);
}
public String render()