Uses of Class
org.jtool.jxplatform.wrapper.collection.JxFieldList

Packages that use JxFieldList
org.jtool.jxplatform.query Application programming interfaces for interaction with the XML representaion of source code. 
org.jtool.jxplatform.wrapper Application programming interfaces for interaction with the XML representaion of source code.  
org.jtool.jxplatform.wrapper.collection Application programming interfaces for collectively managing Java wrappers.  
 

Uses of JxFieldList in org.jtool.jxplatform.query
 

Methods in org.jtool.jxplatform.query that return JxFieldList
static JxFieldList QueryMethod.getUsedFieldsInClass(JxMethod jmethod, JxClass jclass)
          Obtains all fields in a given method that use any field in a given class.
static JxFieldList QueryMethod.getUsedFieldsInAncestorsOfAccessClass(JxMethod jmethod, JxClass jclass)
          Obtains all fields in a given method that use any field in ancestors of a given class.
static JxFieldList QueryMethod.getReadFieldInAncestorsOfClass(JxMethod jmethod, JxClass jclass)
          Obtains all read fields in a given method that use any field in ancestors of a given class.
static JxFieldList QueryMethod.getReadFieldsInClass(JxMethod jmethod, JxClass jclass)
          Obtains all read fields in a given method that use any field in a given class.
static JxFieldList QueryMethod.getWrittenFieldsInAncestorsOfClass(JxMethod jmethod, JxClass jclass)
          Obtains all written fields in a given method that use any field in ancestors of a given class.
static JxFieldList QueryMethod.getWrittenFieldsInClass(JxMethod jmethod, JxClass jclass)
          Obtains all written fields in a given method that use any field in a given class.
static JxFieldList QueryField.getUsedFieldsInClass(JxField jfield, JxClass jclass)
          Obtains all fields which are used by a given field and which are in a given class.
static JxFieldList QueryField.getUsedFieldsInAncestorsOfClass(JxField jfield, JxClass jclass)
          Obtains all fields which are used by a given field and which are in ancestors of a given class.
static JxFieldList QueryField.getFieldsWithTheSameName(JxField jfield, JxClassList jclasses)
          Obtains all fields in a given collection with the same name as a given field.
static JxFieldList QueryField.getHiddenFields(JxField jfield)
          Obtains all fields hidden by a given field.
static JxFieldList QueryField.getHiddenFields(JxField jfield, JxClassList ancestors)
          Obtains all fields hidden by a given field.
static JxFieldList QueryField.getHidingFields(JxField jfield)
          Obtains all fields hiding a given field.
static JxFieldList QueryField.getHidingFields(JxField jfield, JxClassList descendants)
          Obtains all fields hiding a given field.
 

Uses of JxFieldList in org.jtool.jxplatform.wrapper
 

Fields in org.jtool.jxplatform.wrapper declared as JxFieldList
protected  JxFieldList JxClass.fields
          Fields defined in this class.
 

Methods in org.jtool.jxplatform.wrapper that return JxFieldList
 JxFieldList JxBinaryClass.getAllJxFields()
          Returns the wrapper list of all fields within this file.
 JxFieldList JxClass.getAllJxFields()
          Returns the wrapper list of all fields within this file.
 

Uses of JxFieldList in org.jtool.jxplatform.wrapper.collection
 

Methods in org.jtool.jxplatform.wrapper.collection with parameters of type JxFieldList
 void JxFieldList.addAll(JxFieldList list)
          Appends all wrappers in a list to the end of this list.
 void JxFieldList.removeAll(JxFieldList list)
          Removes all wrappers in a list from this list.
 boolean JxFieldList.retainAll(JxFieldList list)
          Retains only wrappers in this list that are contained in a specified list.
 boolean JxFieldList.containsAll(JxFieldList list)
          Tests if this list contains all wrappers of a list.
 

Constructors in org.jtool.jxplatform.wrapper.collection with parameters of type JxFieldList
JxFieldList(JxFieldList list)
          Creates a new list from a list of JxField wrappers.