Uses of Class
org.apache.bcel.generic.LocalVariableInstruction
-
Packages that use LocalVariableInstruction 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.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 LocalVariableInstruction in org.apache.bcel.generic
Subclasses of LocalVariableInstruction in org.apache.bcel.generic Modifier and Type Class Description classALOADALOAD - Load reference from local variableclassASTOREASTORE - Store reference into local variableclassDLOADDLOAD - Load double from local variableclassDSTOREDSTORE - Store double into local variableclassFLOADFLOAD - Load float from local variableclassFSTOREFSTORE - Store float into local variableclassIINCIINC - Increment local variable by constantclassILOADILOAD - Load int from local variable onto stackclassISTOREISTORE - Store int from stack into local variableclassLLOADLLOAD - Load long from local variableclassLoadInstructionDenotes an unparameterized instruction to load a value from a local variable, e.g.classLSTORELSTORE - Store long into local variableclassStoreInstructionDenotes an unparameterized instruction to store a value into a local variable, e.g.Fields in org.apache.bcel.generic declared as LocalVariableInstruction Modifier and Type Field Description static LocalVariableInstructionInstructionConst. ALOAD_0static LocalVariableInstructionInstructionConstants. ALOAD_0Deprecated.static LocalVariableInstructionInstructionConst. ALOAD_1static LocalVariableInstructionInstructionConstants. ALOAD_1Deprecated.static LocalVariableInstructionInstructionConst. ALOAD_2static LocalVariableInstructionInstructionConstants. ALOAD_2Deprecated.static LocalVariableInstructionInstructionConst. ASTORE_0static LocalVariableInstructionInstructionConstants. ASTORE_0Deprecated.static LocalVariableInstructionInstructionConst. ASTORE_1static LocalVariableInstructionInstructionConstants. ASTORE_1Deprecated.static LocalVariableInstructionInstructionConst. ASTORE_2static LocalVariableInstructionInstructionConstants. ASTORE_2Deprecated.static LocalVariableInstructionInstructionConst. ILOAD_0static LocalVariableInstructionInstructionConstants. ILOAD_0Deprecated.static LocalVariableInstructionInstructionConst. ILOAD_1static LocalVariableInstructionInstructionConstants. ILOAD_1Deprecated.static LocalVariableInstructionInstructionConst. ILOAD_2static LocalVariableInstructionInstructionConstants. ILOAD_2Deprecated.static LocalVariableInstructionInstructionConst. ISTORE_0static LocalVariableInstructionInstructionConstants. ISTORE_0Deprecated.static LocalVariableInstructionInstructionConst. ISTORE_1static LocalVariableInstructionInstructionConstants. ISTORE_1Deprecated.static LocalVariableInstructionInstructionConst. ISTORE_2static LocalVariableInstructionInstructionConstants. ISTORE_2Deprecated.static LocalVariableInstructionInstructionConst. THISYou can use these constants in multiple places safely, if you can guarantee that you will never alter their internal values, e.g.static LocalVariableInstructionInstructionConstants. THISDeprecated.You can use these constants in multiple places safely, if you can guarantee that you will never alter their internal values, e.g.Methods in org.apache.bcel.generic that return LocalVariableInstruction Modifier and Type Method Description static LocalVariableInstructionInstructionFactory. createLoad(Type type, int index)static LocalVariableInstructionInstructionFactory. createStore(Type type, int index)Methods in org.apache.bcel.generic with parameters of type LocalVariableInstruction Modifier and Type Method Description voidEmptyVisitor. visitLocalVariableInstruction(LocalVariableInstruction obj)voidVisitor. visitLocalVariableInstruction(LocalVariableInstruction obj) -
Uses of LocalVariableInstruction in org.apache.bcel.verifier.structurals
Methods in org.apache.bcel.verifier.structurals with parameters of type LocalVariableInstruction Modifier and Type Method Description voidInstConstraintVisitor. visitLocalVariableInstruction(LocalVariableInstruction o)Assures the generic preconditions of a LocalVariableInstruction instance.
-