Package org.fife.rsta.ac.xml
Interface ValidationConfig
-
- All Known Implementing Classes:
DtdValidationConfig,SchemaValidationConfig
public interface ValidationConfigConfiguration information to get anXmlParservalidating against either a DTD or a schema.- Version:
- 1.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidconfigureHandler(XmlParser.Handler handler)Configures the actual handler instance.voidconfigureParser(XmlParser parser)Configures the parser itself.
-
-
-
Method Detail
-
configureParser
void configureParser(XmlParser parser)
Configures the parser itself. Called when this config is first set on anXmlParser.- Parameters:
parser- The parser to configure.
-
configureHandler
void configureHandler(XmlParser.Handler handler)
Configures the actual handler instance. Called before each parsing of the document.- Parameters:
handler- The handler to configure.
-
-