| Modifier and Type | Method and Description |
|---|---|
MethodTemplate |
ClassTemplate.createConstructor(java.lang.String[] params)
create a constructor for this class template
|
MethodTemplate |
ClassTemplate.createConstructor(java.lang.String[][] params)
create a constructor for this class template
|
MethodTemplate |
ClassTemplate.createMethod(int modifiers,
java.lang.String name,
java.lang.String returnType,
java.lang.String[] params)
create a method with the given access, the given type of return value for the given name and with the parameters
|
MethodTemplate |
ClassTemplate.createMethod(int modifiers,
java.lang.String name,
java.lang.String returnType,
java.lang.String[][] params)
create a method with the given access, the given type of return value for the given name and with the parameters
|
MethodTemplate |
ClassTemplate.createMethod(java.lang.String name,
java.lang.String[] params)
create a method with public access and no return value for the given name and with the parameters
|
MethodTemplate |
ClassTemplate.createMethod(java.lang.String name,
java.lang.String returnType,
java.lang.String[] params)
create a method with public access and the given type of return value for the given name and with the parameters
|