Package uk.ac.starlink.ttools.votlint
Interface VocabChecker.TermReporter
-
- Enclosing class:
- VocabChecker
public static interface VocabChecker.TermReporterCallback interface for reporting vocabulary interrogation results.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidtermDeprecated(java.lang.String msg)Invoked if the presented term was found in the vocabulary but flagged as "deprecated".voidtermFound()Invoked if the presented term was found as a normal entry in the vocabulary.voidtermPreliminary(java.lang.String msg)Invoked if the presented term was found in the vocabulary but flagged as "preliminary".voidtermUnknown(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
-
-