Uses of Class
ca.ubc.cs.elide.nodes.FieldNode

Uses of FieldNode in ca.ubc.cs.elide.nodes
 

Methods in ca.ubc.cs.elide.nodes that return FieldNode
static FieldNode NodeFactory.createField(java.lang.String text)
          Creates a FieldNode from a String of Java source code defining the field.
 FieldNode[] ClassNode.getDeclaredFields()
          Returns an array of FieldNode objects reflecting all the fields declared by the class or interface represented by this ClassNode object.
 FieldNode ClassNode.getDeclaredField(java.lang.String name)
          Returns a FieldNode object that reflects the specified declared field of the class or interface represented by this ClassNode object.
 FieldNode ClassNode.getField(java.lang.String name)
          Returns a FieldNode object that reflects the specified public member field of the class or interface represented by this ClassNode object.
 FieldNode[] ClassNode.getFields()
          Returns an array containing FieldNode objects reflecting all the accessible public fields of the class or interface represented by this ClassNode object.