Google

bcel API: Uses of Class org.apache.bcel.generic.ReferenceType

Uses of Class
org.apache.bcel.generic.ReferenceType

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

Subclasses of ReferenceType in org.apache.bcel.generic
 class ArrayType
          Denotes array type, such as int[][]
 class ObjectType
          Denotes reference such as java.lang.String.
 

Fields in org.apache.bcel.generic declared as ReferenceType
static ReferenceType Type.NULL
           
 

Methods in org.apache.bcel.generic that return ReferenceType
 ReferenceType ReferenceType.firstCommonSuperclass(ReferenceType t)
          This commutative operation returns the first common superclass (narrowest ReferenceType referencing a class, not an interface).
 

Methods in org.apache.bcel.generic with parameters of type ReferenceType
 ReferenceType ReferenceType.firstCommonSuperclass(ReferenceType t)
          This commutative operation returns the first common superclass (narrowest ReferenceType referencing a class, not an interface).
 CHECKCAST InstructionFactory.createCheckCast(ReferenceType t)
           
 

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

Subclasses of ReferenceType in org.apache.bcel.verifier.structurals
 class UninitializedObjectType
          This class represents an uninitialized object type; see The Java Virtual Machine Specification, Second Edition, page 147: 4.9.4 for more details.