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.BCField

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

Methods in com.techtrader.modules.tools.bytecode that return BCField
 BCField FieldInstruction.getField()
          If the field is a member of the current class, then this method will retrieve the BCField object for it; otherwise it will return null.
private  BCField ClassConstantInstruction.addClassField(java.lang.String name)
           
 BCField[] BCClass.getFields()
          Get all the fields of this class.
 BCField BCClass.getField(java.lang.String name)
          Get the field with the given name.
 BCField BCClass.importField(BCField field)
          Import the given field from another class, or, if the field belongs to this class, add a duplicate of it (in this case, it is an error not to change the field name).
 BCField BCClass.addField()
          Add a field to this class.
 BCField BCClass.addField(java.lang.String name, java.lang.String type)
          Add a field to this class.
 BCField BCClass.addField(java.lang.String name, java.lang.Class type)
          Add a field to this class.
 

Methods in com.techtrader.modules.tools.bytecode with parameters of type BCField
 FieldInstruction FieldInstruction.setField(BCField field)
          Set the field to operate on.
 BCField BCClass.importField(BCField field)
          Import the given field from another class, or, if the field belongs to this class, add a duplicate of it (in this case, it is an error not to change the field name).
 boolean BCClass.removeField(BCField field)
          Removes a field from this class.