Uses of Class
org.codehaus.modello.plugin.java.javasource.JField
-
Packages that use JField Package Description org.codehaus.modello.plugin.java org.codehaus.modello.plugin.java.javasource -
-
Uses of JField in org.codehaus.modello.plugin.java
Methods in org.codehaus.modello.plugin.java that return JField Modifier and Type Method Description private JField
JavaModelloGenerator. createField(ModelField modelField)
Methods in org.codehaus.modello.plugin.java with parameters of type JField Modifier and Type Method Description private JMethod
JavaModelloGenerator. createGetter(JField field, ModelField modelField)
private JMethod
JavaModelloGenerator. createSetter(JField field, ModelField modelField)
private JMethod
JavaModelloGenerator. createSetter(JField field, ModelField modelField, boolean isBuilderMethod)
-
Uses of JField in org.codehaus.modello.plugin.java.javasource
Fields in org.codehaus.modello.plugin.java.javasource with type parameters of type JField Modifier and Type Field Description private java.util.Map<java.lang.String,JField>
JClass. _fields
The list of member variables (fields) of this JClassprivate java.util.Map<java.lang.String,JField>
JInterface. fields
The fields for this JInterfaceMethods in org.codehaus.modello.plugin.java.javasource that return JField Modifier and Type Method Description JField
JClass. getField(java.lang.String name)
Returns the member with the given name, or null if no member was found with the given nameJField
JInterface. getField(java.lang.String name)
Returns the field with the given name, or null if no field was found with the given name.abstract JField
JStructure. getField(java.lang.String name)
Returns the field with the given name, or null if no field was found with the given name.JField[]
JClass. getFields()
Returns an array of all the JFields of this JClassJField[]
JInterface. getFields()
Returns an array of all the JFields of this JStructureabstract JField[]
JStructure. getFields()
Returns an array of all the JFields of this JStructureJField
JClass. removeField(java.lang.String name)
Removes the field with the given name from this JClassMethods in org.codehaus.modello.plugin.java.javasource with parameters of type JField Modifier and Type Method Description void
JClass. addField(JField jField)
Adds the given JField to this JClassvoid
JInterface. addField(JField jField)
Adds the given JField to this JStructure.abstract void
JStructure. addField(JField jField)
Adds the given JField to this JStructure.boolean
JClass. removeField(JField jField)
Removes the given JField from this JClass
-