public abstract class PassVerifier extends Object
| Constructor and Description |
|---|
PassVerifier() |
| Modifier and Type | Method and Description |
|---|---|
void |
addMessage(String message)
This method adds a (warning) message to the message pool of this PassVerifier.
|
abstract VerificationResult |
do_verify()
Verifies, not cached.
|
String[] |
getMessages()
Returns the (warning) messages that this PassVerifier accumulated during its do_verify()ing work.
|
List<String> |
getMessagesList()
Returns the (warning) messages that this PassVerifier accumulated during its do_verify()ing work.
|
VerificationResult |
verify()
This method runs a verification pass conforming to the Java Virtual Machine Specification, 2nd edition, on a class
file.
|
public PassVerifier()
public void addMessage(String message)
message - message to be appended to the message list.getMessages()public abstract VerificationResult do_verify()
public String[] getMessages()
addMessage(String),
do_verify()public List<String> getMessagesList()
addMessage(String),
do_verify()public VerificationResult verify()
getMessages(),
addMessage(String)Copyright © 2004–2022 The Apache Software Foundation. All rights reserved.