Package | Description |
---|---|
xml |
A collection of support classes for XML data handling.
|
Modifier and Type | Method and Description |
---|---|
void |
XmlValidator.validate(java.io.File f)
Attempts to validate the XML document in the given file.
|
void |
XmlValidator.validate(java.io.File f,
CleanerEntityResolver er)
Attempts to validate the XML document in the given file,
using the given entity resolver if it is non-null.
|
void |
XmlValidator.validate(org.xml.sax.InputSource ins)
Attempts to validate the XML document on the given input source.
|
void |
XmlValidator.validate(org.xml.sax.InputSource ins,
CleanerEntityResolver er)
Attempts to validate the XML document on the given input source,
using the given entity resolver if it is non-null.
|
void |
XmlValidator.validate(java.lang.String uri)
Attempts to validate the XML document with the given URI.
|
void |
XmlValidator.validate(java.lang.String uri,
CleanerEntityResolver er)
Attempts to validate the XML document with the given URI,
using the given entity resolver if it is non-null.
|