Interface VocabChecker.TermReporter
- Enclosing class:
VocabChecker
public static interface VocabChecker.TermReporter
Callback interface for reporting vocabulary interrogation results.
- Since:
- 25 Apr 2019
- Author:
- Mark Taylor
-
Method Summary
Modifier and TypeMethodDescriptionvoidtermDeprecated(String msg) Invoked if the presented term was found in the vocabulary but flagged as "deprecated".voidInvoked if the presented term was found as a normal entry in the vocabulary.voidtermPreliminary(String msg) Invoked if the presented term was found in the vocabulary but flagged as "preliminary".voidtermUnknown(String msg) Invoked if no such term was found in the vocabulary.
-
Method Details
-
termFound
void termFound()Invoked if the presented term was found as a normal entry in the vocabulary. -
termUnknown
Invoked if no such term was found in the vocabulary.- Parameters:
msg- user-directed message giving details
-
termDeprecated
Invoked if the presented term was found in the vocabulary but flagged as "deprecated".- Parameters:
msg- user-directed message giving details
-
termPreliminary
Invoked if the presented term was found in the vocabulary but flagged as "preliminary".- Parameters:
msg- user-directed message giving details
-