Class GenericParser
- java.lang.Object
-
- org.apache.commons.digester.parser.GenericParser
-
@Deprecated public class GenericParser extends Object
Deprecated.Create an XMLParser instance yourself, configure validation appropriately, and pass it as a parameter to theDigester
constructor, or useDigester.setXMLSchema(javax.xml.validation.Schema)
for validation.Create aSAXParser
configured to support XML Schema and DTD.- Since:
- 1.6
-
-
Field Summary
Fields Modifier and Type Field Description protected static String
JAXP_SCHEMA_LANGUAGE
Deprecated.The JAXP 1.2 property to set up the schemaLanguage used.protected static org.apache.commons.logging.Log
log
Deprecated.The Log to which all SAX event related logging calls will be made.
-
Constructor Summary
Constructors Constructor Description GenericParser()
Deprecated.
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static SAXParser
newSAXParser(Properties properties)
Deprecated.Create aSAXParser
configured to support XML Scheman and DTD
-
-
-
Field Detail
-
log
protected static org.apache.commons.logging.Log log
Deprecated.The Log to which all SAX event related logging calls will be made.
-
JAXP_SCHEMA_LANGUAGE
protected static String JAXP_SCHEMA_LANGUAGE
Deprecated.The JAXP 1.2 property to set up the schemaLanguage used.
-
-
Method Detail
-
newSAXParser
public static SAXParser newSAXParser(Properties properties) throws ParserConfigurationException, SAXException, SAXNotRecognizedException
Deprecated.Create aSAXParser
configured to support XML Scheman and DTD- Parameters:
properties
- parser specific properties/features- Returns:
- an XML Schema/DTD enabled
SAXParser
- Throws:
ParserConfigurationException
SAXException
SAXNotRecognizedException
-
-