Package uk.ac.starlink.ttools.votlint
Interface AttributeChecker
-
- All Known Implementing Classes:
DeprecatedAttChecker
,FieldRefChecker
,IDChecker
,NameChecker
,ParamHandler.ValueChecker
,RefChecker
,TableHandler.NrowsChecker
,VersionChecker
public interface AttributeChecker
Defines how to perform checks on attributes.- Since:
- 7 Apr 2005
- Author:
- Mark Taylor (Starlink)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
check(java.lang.String attValue, ElementHandler handler)
Performs a syntactic and/or semantic check on an attribute value for a given element.
-
-
-
Method Detail
-
check
void check(java.lang.String attValue, ElementHandler handler)
Performs a syntactic and/or semantic check on an attribute value for a given element. Anything worthy of comment should be logged through handler's context.- Parameters:
attValue
- the value of the attribute to checkhandler
- the element on which attValue appears
-
-