Interface LabelValidator
-
- All Known Implementing Classes:
CatalogNameValidator
,DuplicateIdentifierValidator
,TableValidator
public interface LabelValidator
This interface is a means to define an extension point for the parser to perform further validation. This type of validation is outside the realm of the syntax defined by the grammar and data dictionary. An example of this would be required file characteristic elements.- Version:
- $Revision$
- Author:
- pramirez, jagander
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
validate(Label label)
Method signature for checking to see if a label is valid.
-
-
-
Method Detail
-
validate
boolean validate(Label label)
Method signature for checking to see if a label is valid.- Parameters:
label
- object returned from parsing that represents the PDS label- Returns:
- flag indicating whether or not the step in validation was passed.
-
-