Class GenericParser
- java.lang.Object
-
- org.apache.commons.digester.parser.GenericParser
-
public class GenericParser extends java.lang.Object
Create aSAXParser
configured to support XML Schema and DTD.- Since:
- 1.6
-
-
Field Summary
Fields Modifier and Type Field Description protected static java.lang.String
JAXP_SCHEMA_LANGUAGE
The JAXP 1.2 property to set up the schemaLanguage used.private static java.lang.String
JAXP_SCHEMA_SOURCE
The JAXP 1.2 property required to set up the schema location.protected static org.apache.commons.logging.Log
log
The Log to which all SAX event related logging calls will be made.
-
Constructor Summary
Constructors Constructor Description GenericParser()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static javax.xml.parsers.SAXParser
newSAXParser(java.util.Properties properties)
Create aSAXParser
configured to support XML Scheman and DTD
-
-
-
Field Detail
-
log
protected static org.apache.commons.logging.Log log
The Log to which all SAX event related logging calls will be made.
-
JAXP_SCHEMA_SOURCE
private static final java.lang.String JAXP_SCHEMA_SOURCE
The JAXP 1.2 property required to set up the schema location.- See Also:
- Constant Field Values
-
JAXP_SCHEMA_LANGUAGE
protected static java.lang.String JAXP_SCHEMA_LANGUAGE
The JAXP 1.2 property to set up the schemaLanguage used.
-
-
Method Detail
-
newSAXParser
public static javax.xml.parsers.SAXParser newSAXParser(java.util.Properties properties) throws javax.xml.parsers.ParserConfigurationException, org.xml.sax.SAXException, org.xml.sax.SAXNotRecognizedException
Create aSAXParser
configured to support XML Scheman and DTD- Parameters:
properties
- parser specific properties/features- Returns:
- an XML Schema/DTD enabled
SAXParser
- Throws:
javax.xml.parsers.ParserConfigurationException
org.xml.sax.SAXException
org.xml.sax.SAXNotRecognizedException
-
-