Uses of Class
org.aspectj.apache.bcel.generic.FieldInstruction

Packages that use FieldInstruction
org.aspectj.apache.bcel.generic   
org.aspectj.weaver.bcel   
 

Uses of FieldInstruction in org.aspectj.apache.bcel.generic
 

Methods in org.aspectj.apache.bcel.generic that return FieldInstruction
 FieldInstruction InstructionFactory.createFieldAccess(java.lang.String class_name, java.lang.String name, Type type, short kind)
          Create a field instruction.
 FieldInstruction InstructionFactory.createGetField(java.lang.String class_name, java.lang.String name, Type t)
           
 FieldInstruction InstructionFactory.createGetStatic(java.lang.String class_name, java.lang.String name, Type t)
           
 FieldInstruction InstructionFactory.createPutField(java.lang.String class_name, java.lang.String name, Type t)
           
 FieldInstruction InstructionFactory.createPutStatic(java.lang.String class_name, java.lang.String name, Type t)
           
 

Methods in org.aspectj.apache.bcel.generic with parameters of type FieldInstruction
 void InstVisitor.visitGETFIELD(FieldInstruction obj)
           
 void InstVisitor.visitGETSTATIC(FieldInstruction obj)
           
 void InstVisitor.visitPUTFIELD(FieldInstruction obj)
           
 void InstVisitor.visitPUTSTATIC(FieldInstruction obj)
           
 

Uses of FieldInstruction in org.aspectj.weaver.bcel
 

Methods in org.aspectj.weaver.bcel with parameters of type FieldInstruction
static Member BcelWorld.makeFieldJoinPointSignature(LazyClassGen cg, FieldInstruction fi)