Package uk.ac.starlink.ttools.votlint
Interface VocabChecker.TermReporter
-
- Enclosing class:
- VocabChecker
public static interface VocabChecker.TermReporter
Callback interface for reporting vocabulary interrogation results.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
termDeprecated(java.lang.String msg)
Invoked if the presented term was found in the vocabulary but flagged as "deprecated".void
termFound()
Invoked if the presented term was found as a normal entry in the vocabulary.void
termPreliminary(java.lang.String msg)
Invoked if the presented term was found in the vocabulary but flagged as "preliminary".void
termUnknown(java.lang.String msg)
Invoked if no such term was found in the vocabulary.
-
-
-
Method Detail
-
termFound
void termFound()
Invoked if the presented term was found as a normal entry in the vocabulary.
-
termUnknown
void termUnknown(java.lang.String msg)
Invoked if no such term was found in the vocabulary.- Parameters:
msg
- user-directed message giving details
-
termDeprecated
void termDeprecated(java.lang.String msg)
Invoked if the presented term was found in the vocabulary but flagged as "deprecated".- Parameters:
msg
- user-directed message giving details
-
termPreliminary
void termPreliminary(java.lang.String msg)
Invoked if the presented term was found in the vocabulary but flagged as "preliminary".- Parameters:
msg
- user-directed message giving details
-
-