Uses of Class
org.apache.bcel.verifier.Verifier
-
Packages that use Verifier Package Description org.apache.bcel.verifier BCEL's verifier JustIce is there to help you dump correct Java class files created or modified with BCEL.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 Verifier in org.apache.bcel.verifier
Fields in org.apache.bcel.verifier declared as Verifier Modifier and Type Field Description (package private) static Verifier[]
Verifier. EMPTY_ARRAY
Fields in org.apache.bcel.verifier with type parameters of type Verifier Modifier and Type Field Description private static java.util.Map<java.lang.String,Verifier>
VerifierFactory. MAP
The HashMap that holds the data about the already-constructed Verifier instances.Methods in org.apache.bcel.verifier that return Verifier Modifier and Type Method Description static Verifier
VerifierFactory. getVerifier(java.lang.String fullyQualifiedClassName)
Returns the (only) verifier responsible for the class with the given name.static Verifier[]
VerifierFactory. getVerifiers()
Returns all Verifier instances created so far. -
Uses of Verifier in org.apache.bcel.verifier.statics
Fields in org.apache.bcel.verifier.statics declared as Verifier Modifier and Type Field Description private Verifier
Pass1Verifier. verifier
The Verifier that created this.private Verifier
Pass2Verifier. verifier
The Verifier that created this.private Verifier
Pass3aVerifier. verifier
The Verifier that created this.Constructors in org.apache.bcel.verifier.statics with parameters of type Verifier Constructor Description Pass1Verifier(Verifier verifier)
Should only be instantiated by a Verifier.Pass2Verifier(Verifier verifier)
Should only be instantiated by a Verifier.Pass3aVerifier(Verifier verifier, int methodNo)
Should only be instantiated by a Verifier. -
Uses of Verifier in org.apache.bcel.verifier.structurals
Fields in org.apache.bcel.verifier.structurals declared as Verifier Modifier and Type Field Description private Verifier
Pass3bVerifier. myOwner
The Verifier that created this.Constructors in org.apache.bcel.verifier.structurals with parameters of type Verifier Constructor Description Pass3bVerifier(Verifier myOwner, int methodNo)
This class should only be instantiated by a Verifier.
-