Uses of Class
org.codehaus.modello.generator.java.javasource.JField

Packages that use JField
org.codehaus.modello.generator.java.javasource   
org.codehaus.modello.plugin.java   
 

Uses of JField in org.codehaus.modello.generator.java.javasource
 

Methods in org.codehaus.modello.generator.java.javasource that return JField
 JField JClass.getField(java.lang.String name)
          Returns the member with the given name, or null if no member was found with the given name
 JField[] JClass.getFields()
          Returns an array of all the JFields of this JClass
 JField JClass.removeField(java.lang.String name)
          Removes the field with the given name from this JClass
 JField JInterface.getField(java.lang.String name)
          Returns the field with the given name, or null if no field was found with the given name.
 JField[] JInterface.getFields()
          Returns an array of all the JFields of this JStructure
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.
abstract  JField[] JStructure.getFields()
          Returns an array of all the JFields of this JStructure
 

Methods in org.codehaus.modello.generator.java.javasource with parameters of type JField
 void JClass.addField(JField jField)
          Adds the given JField to this JClass
 boolean JClass.removeField(JField jField)
          Removes the given JField from this JClass
 void JInterface.addField(JField jField)
          Adds the given JField to this JStructure.
abstract  void JStructure.addField(JField jField)
          Adds the given JField to this JStructure.
 

Uses of JField in org.codehaus.modello.plugin.java
 

Methods in org.codehaus.modello.plugin.java that return JField
private  JField JavaModelloGenerator.createField(ModelField modelField)
           
 

Methods in org.codehaus.modello.plugin.java with parameters of type JField
private  JMethod JavaModelloGenerator.createGetter(JField field, ModelField modelField)
           
private  JMethod JavaModelloGenerator.createSetter(JField field, ModelField modelField)