Uses of Class
edu.rice.cs.cunit.classFile.ClassFile

Packages that use ClassFile
edu.rice.cs.cunit.classFile   
edu.rice.cs.cunit.classFile.attributes   
edu.rice.cs.cunit.instrumentors   
 

Uses of ClassFile in edu.rice.cs.cunit.classFile
 

Fields in edu.rice.cs.cunit.classFile declared as ClassFile
private  ClassFile ClassFileTools.ClassLocation._cf
           
 

Methods in edu.rice.cs.cunit.classFile that return ClassFile
static ClassFile ClassFileTools.findClassInFiles(java.lang.String className, java.util.Set<java.lang.String> filesToConsider)
          Find a class in the files to consider and return its class file info.
 ClassFile ClassFileTools.ClassLocation.getClassFile()
           
static ClassFile ClassFileTools.loadClassFromStream(java.io.InputStream is)
          Load class file info from the stream.
 

Methods in edu.rice.cs.cunit.classFile with parameters of type ClassFile
static java.util.Set<java.lang.String> ClassFileTools.getClassNamesUsed(ClassFile cf)
          Returns a set of class names used in a class files.
 

Constructors in edu.rice.cs.cunit.classFile with parameters of type ClassFile
ClassFileTools.ClassLocation(java.lang.String className, ClassFile cf, java.io.InputStream inputStream, java.io.File file)
           
ClassFileTools.ClassLocation(java.lang.String className, ClassFile cf, java.io.InputStream inputStream, java.io.File file, java.util.jar.JarFile jarFile)
           
 

Uses of ClassFile in edu.rice.cs.cunit.classFile.attributes
 

Methods in edu.rice.cs.cunit.classFile.attributes with parameters of type ClassFile
static void InstrumentationAttributeInfo.addInstrumentationAttributeInfo(ClassFile cf, java.util.Collection<java.lang.String> itors)
          Add the Instrumentation attribute with the given list of instrumentors to the class file.
static void InstrumentationAttributeInfo.addInstrumentationAttributeInfo(ClassFile cf, java.util.List<IInstrumentationStrategy> itors)
          Add the Instrumentation attribute with the given list of instrumentors to the class file.
static void InstrumentationAttributeInfo.addInstrumentationAttributeInfo(ClassFile cf, java.lang.String s)
          Add the Instrumentation attribute with the given instrumentor class name string to the class file.
 

Uses of ClassFile in edu.rice.cs.cunit.instrumentors
 

Methods in edu.rice.cs.cunit.instrumentors with parameters of type ClassFile
 void IInstrumentationStrategy.instrument(ClassFile cf)
          Instrument the class.