Uses of Interface
org.apache.bcel.generic.LoadClass

Packages that use LoadClass
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 LoadClass in org.apache.bcel.generic
 

Classes in org.apache.bcel.generic that implement LoadClass
 class ANEWARRAY
          ANEWARRAY - Create new array of references Stack: ..., count -> ..., arrayref
 class CHECKCAST
          CHECKCAST - Check whether object is of given type Stack: ..., objectref -> ..., objectref
 class 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 object Stack: ..., objectref -> ..., value OR Stack: ..., objectref -> ..., value.word1, value.word2
 class GETSTATIC
          GETSTATIC - Fetch static field from class Stack: ..., -> ..., value OR Stack: ..., -> ..., value.word1, value.word2
 class INSTANCEOF
          INSTANCEOF - Determine if object is of given type Stack: ..., objectref -> ..., result
 class InvokeInstruction
          Super class for the INVOKExxx family of instructions.
 class INVOKEINTERFACE
          INVOKEINTERFACE - Invoke interface method Stack: ..., objectref, [arg1, [arg2 ...]]
 class INVOKESPECIAL
          INVOKESPECIAL - Invoke instance method; special handling for superclass, private and instance initialization method invocations Stack: ..., objectref, [arg1, [arg2 ...]]
 class INVOKESTATIC
          INVOKESTATIC - Invoke a class (static) method Stack: ..., [arg1, [arg2 ...]]
 class INVOKEVIRTUAL
          INVOKEVIRTUAL - Invoke instance method; dispatch based on class Stack: ..., objectref, [arg1, [arg2 ...]]
 class MULTIANEWARRAY
          MULTIANEWARRAY - Create new mutidimensional array of references Stack: ..., count1, [count2, ...]
 class NEW
          NEW - Create new object Stack: ...
 class PUTFIELD
          PUTFIELD - Put field in object Stack: ..., objectref, value -> ...
 class PUTSTATIC
          PUTSTATIC - Put static field in class Stack: ..., value -> ...
 

Methods in org.apache.bcel.generic with parameters of type LoadClass
 void Visitor.visitLoadClass(LoadClass obj)
           
 void EmptyVisitor.visitLoadClass(LoadClass obj)
           
 

Uses of LoadClass in org.apache.bcel.verifier.structurals
 

Methods in org.apache.bcel.verifier.structurals with parameters of type LoadClass
 void InstConstraintVisitor.visitLoadClass(LoadClass o)
          Assures the generic preconditions of a LoadClass instance.
 



Copyright © 2002-2003 Apache Software Foundation. All Rights Reserved.