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

Packages that use JxFileList
org.jtool.jxplatform.query 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 JxFileList in org.jtool.jxplatform.query
 

Methods in org.jtool.jxplatform.query that return JxFileList
static JxFileList QueryProject.getAllJxFiles(JxProject project)
          Obtains all files which exist in a given project.
static JxFileList QueryProject.getFilesInPackage(JxProject project, java.lang.String pname)
          Obtains all files which exist in a given package of a given project.
static JxFileList QueryProject.getFilesUsingClass(JxProject project, JxClass jclass)
          Obtains all files in a given project that use a given class.
static JxFileList QueryProject.getFilesUsingClassExceptSelf(JxProject project, JxClass jclass)
          Obtains all files in a given project that use a given class except the class itself.
static JxFileList QueryProject.getFilesCallingMethod(JxProject project, JxMethod jmethod)
          Obtains all files in a given project that call a given method.
static JxFileList QueryProject.getFilesCallingTheMethodExceptSelf(JxProject project, JxMethod jmethod)
          Obtains all files in a given project that call a given method except the method itself.
static JxFileList QueryProject.getFilesUsingField(JxProject project, JxField jfield)
          Obtains all files in a given project that access a given field.
static JxFileList QueryProject.getFilesUsingFieldExceptSelf(JxProject project, JxField jfield)
          Obtains all files in a given project that access a given field except the fiels itself.
static JxFileList QueryFile.getAllFilesInTheSamePackage(JxFile jfile)
          Obtains all files in a package where a given file exists.
 

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

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

Constructors in org.jtool.jxplatform.wrapper.collection with parameters of type JxFileList
JxFileList(JxFileList list)
          Creates a new list from a July 27list of JxFile wrappers.