Uses of Interface
org.apache.bcel.generic.LoadClass
-
Packages that use LoadClass Package Description org.apache.bcel.generic Generic part of the Apache Byte Code Engineering Library (BCEL), classes to dynamically modify class objects and byte code instructions.org.apache.bcel.verifier.statics PassVerifier classes used internally by JustIce.org.apache.bcel.verifier.structurals A PassVerifier class mostly used internally by JustIce, yielding a control flow graph for public use as a nice side effect. -
-
Uses of LoadClass in org.apache.bcel.generic
Classes in org.apache.bcel.generic that implement LoadClass Modifier and Type Class Description class
ANEWARRAY
ANEWARRAY - Create new array of referencesclass
CHECKCAST
CHECKCAST - Check whether object is of given typeclass
FieldInstruction
Super class for the GET/PUTxxx family of instructions.class
FieldOrMethod
Super class for InvokeInstruction and FieldInstruction, since they have some methods in common!class
GETFIELD
GETFIELD - Fetch field from objectclass
GETSTATIC
GETSTATIC - Fetch static field from classclass
INSTANCEOF
INSTANCEOF - Determine if object is of given typeclass
INVOKEDYNAMIC
Class for INVOKEDYNAMIC.class
InvokeInstruction
Super class for the INVOKExxx family of instructions.class
INVOKEINTERFACE
INVOKEINTERFACE - Invoke interface methodclass
INVOKESPECIAL
INVOKESPECIAL - Invoke instance method; special handling for superclass, private and instance initialization method invocationsclass
INVOKESTATIC
INVOKESTATIC - Invoke a class (static) methodclass
INVOKEVIRTUAL
INVOKEVIRTUAL - Invoke instance method; dispatch based on classclass
MULTIANEWARRAY
MULTIANEWARRAY - Create new mutidimensional array of referencesclass
NEW
NEW - Create new objectclass
PUTFIELD
PUTFIELD - Put field in objectclass
PUTSTATIC
PUTSTATIC - Put static field in classMethods in org.apache.bcel.generic with parameters of type LoadClass Modifier and Type Method Description void
EmptyVisitor. visitLoadClass(LoadClass obj)
void
Visitor. visitLoadClass(LoadClass obj)
-
Uses of LoadClass in org.apache.bcel.verifier.statics
Methods in org.apache.bcel.verifier.statics with parameters of type LoadClass Modifier and Type Method Description void
Pass3aVerifier.InstOperandConstraintVisitor. visitLoadClass(LoadClass loadClass)
Assures the generic preconditions of a LoadClass instance. -
Uses of LoadClass in org.apache.bcel.verifier.structurals
Methods in org.apache.bcel.verifier.structurals with parameters of type LoadClass Modifier and Type Method Description void
InstConstraintVisitor. visitLoadClass(LoadClass o)
Assures the generic preconditions of a LoadClass instance.
-