Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Class
com.techtrader.modules.tools.bytecode.BCClass

Uses of BCClass in com.techtrader.modules.tools.bytecode
 

Fields in com.techtrader.modules.tools.bytecode declared as BCClass
private  BCClass ClassConstantInstruction._class
           
private  BCClass BCMethod._owner
           
private  BCClass BCField._owner
           
 

Methods in com.techtrader.modules.tools.bytecode that return BCClass
 BCClass BCMethod.getOwner()
          Get the BCClass that owns this method.
 BCClass BCField.getOwner()
          Get the BCClass that owns this field.
 

Methods in com.techtrader.modules.tools.bytecode with parameters of type BCClass
 void BCClass.copy(BCClass orig)
          Copy all of the data from the given original BCClass to this one, recursing into fields, methods, code, the constant pool, etc.
 void BCClass.importFields(BCClass other)
          Import all fields from another class.
 void BCClass.importMethods(BCClass other)
          Import all methods from the given class; note that this includes constructors, static initializers, etc.
 

Constructors in com.techtrader.modules.tools.bytecode with parameters of type BCClass
ClassConstantInstruction(BCClass bc, Code code, Instruction nop)
          Protected constructor.
BCMethod(BCClass owner)
          Protected constructor.
BCField(BCClass owner)
          Protected constructor.
BCClass(BCClass orig)
          Create a BCClass that is an exact copy of the given one.