Uses of Class
org.apache.bcel.generic.FieldInstruction
-
Packages that use FieldInstruction Package Description org.apache.bcel.generic This package contains the "generic" part of the Byte Code Engineering Library, i.e., classes to dynamically modify class objects and byte code instructions.org.apache.bcel.util This package contains utility classes for the Byte Code Engineering Library, namely:org.apache.bcel.verifier.statics Provides PassVerifier classes used internally by JustIce.org.apache.bcel.verifier.structurals Provides a PassVerifier class mostly used internally by JustIce, yielding a control flow graph for public use as a nice side effect. -
-
Uses of FieldInstruction in org.apache.bcel.generic
Subclasses of FieldInstruction in org.apache.bcel.generic Modifier and Type Class Description classGETFIELDGETFIELD - Fetch field from objectclassGETSTATICGETSTATIC - Fetch static field from classclassPUTFIELDPUTFIELD - Put field in objectclassPUTSTATICPUTSTATIC - Put static field in classMethods in org.apache.bcel.generic that return FieldInstruction Modifier and Type Method Description FieldInstructionInstructionFactory. createFieldAccess(java.lang.String class_name, java.lang.String name, Type type, short kind)Create a field instruction.Methods in org.apache.bcel.generic with parameters of type FieldInstruction Modifier and Type Method Description voidEmptyVisitor. visitFieldInstruction(FieldInstruction obj)voidVisitor. visitFieldInstruction(FieldInstruction obj) -
Uses of FieldInstruction in org.apache.bcel.util
Methods in org.apache.bcel.util with parameters of type FieldInstruction Modifier and Type Method Description voidBCELFactory. visitFieldInstruction(FieldInstruction i) -
Uses of FieldInstruction in org.apache.bcel.verifier.statics
Methods in org.apache.bcel.verifier.statics with parameters of type FieldInstruction Modifier and Type Method Description private ObjectTypePass3aVerifier.InstOperandConstraintVisitor. getObjectType(FieldInstruction o)voidPass3aVerifier.InstOperandConstraintVisitor. visitFieldInstruction(FieldInstruction o)Checks if the constraints of operands of the said instruction(s) are satisfied. -
Uses of FieldInstruction in org.apache.bcel.verifier.structurals
Methods in org.apache.bcel.verifier.structurals with parameters of type FieldInstruction Modifier and Type Method Description private ObjectTypeInstConstraintVisitor. getObjectType(FieldInstruction o)voidInstConstraintVisitor. visitFieldInstruction(FieldInstruction o)Ensures the general preconditions of a FieldInstruction instance.
-