Package sootup.core.validation
Class ClassModifiersValidator
java.lang.Object
sootup.core.validation.ClassModifiersValidator
- All Implemented Interfaces:
ClassValidator
Validator that checks for impossible combinations of class modifiers
- Author:
- Steven Arzt
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleanBasic validators run essential checks and are run always if validate is called.
If this method returns false and the caller of the validator respects this property,
the checks will only be run if the debug or validation option is activated.voidvalidate(SootClass sc, List<ValidationException> exceptions) Validates the given class and saves all validation errors in the given list.
-
Constructor Details
-
ClassModifiersValidator
public ClassModifiersValidator()
-
-
Method Details
-
validate
Description copied from interface:ClassValidatorValidates the given class and saves all validation errors in the given list.- Specified by:
validatein interfaceClassValidator- Parameters:
sc- the class to check
-
isBasicValidator
public boolean isBasicValidator()Description copied from interface:ClassValidatorBasic validators run essential checks and are run always if validate is called.
If this method returns false and the caller of the validator respects this property,
the checks will only be run if the debug or validation option is activated.- Specified by:
isBasicValidatorin interfaceClassValidator- Returns:
- whether this validator is a basic validator
-