| java.lang.Object org.xml.sax.helpers.DefaultHandler org.apache.turbine.services.intake.transform.XmlToAppData
XmlToAppData | public XmlToAppData()(Code) | | Creates a new instance of the Intake XML Parser
|
characters | public void characters(char[] mesgArray, int start, int length)(Code) | | Handles the character data, which we are using to specify the error message.
Parameters: mesgArray - The characters. Parameters: start - The start position in the character array. Parameters: length - The number of characters to use from the character array. |
endElement | public void endElement(String uri, String localName, String rawName)(Code) | | Handles closing Elements of the XML file
Parameters: uri - The current namespace URI. Parameters: localName - The local name (without prefix), or the empty string if Namespace processing is not being performed. Parameters: rawName - The qualified name (with prefix), or the empty string if qualified names are not available. |
error | public void error(SAXParseException spe)(Code) | | Callback function for the xml parser to give errors.
Parameters: spe - a SAXParseException value |
fatalError | public void fatalError(SAXParseException spe)(Code) | | Callback function for the xml parser to give fatalErrors.
Parameters: spe - a SAXParseException value |
resolveEntity | public InputSource resolveEntity(String publicId, String systemId)(Code) | | EntityResolver implementation. Called by the XML parser
Parameters: publicId - The public identifer, which might be null. Parameters: systemId - The system identifier provided in the XML document. an InputSource for the database.dtd file |
startElement | public void startElement(String uri, String localName, String rawName, Attributes attributes)(Code) | | Handles opening elements of the xml file.
Parameters: uri - The current namespace URI. Parameters: localName - The local name (without prefix), or the empty string if Namespace processing is not being performed. Parameters: rawName - The qualified name (with prefix), or the empty string if qualified names are not available. Parameters: attributes - The specified or defaulted attributes. |
warning | public void warning(SAXParseException spe)(Code) | | Callback function for the xml parser to give warnings.
Parameters: spe - a SAXParseException value |
Methods inherited from org.xml.sax.helpers.DefaultHandler | public void characters(char ch, int start, int length) throws SAXException(Code)(Java Doc) public void endDocument() throws SAXException(Code)(Java Doc) public void endElement(String uri, String localName, String qName) throws SAXException(Code)(Java Doc) public void endPrefixMapping(String prefix) throws SAXException(Code)(Java Doc) public void error(SAXParseException e) throws SAXException(Code)(Java Doc) public void fatalError(SAXParseException e) throws SAXException(Code)(Java Doc) public void ignorableWhitespace(char ch, int start, int length) throws SAXException(Code)(Java Doc) public void notationDecl(String name, String publicId, String systemId) throws SAXException(Code)(Java Doc) public void processingInstruction(String target, String data) throws SAXException(Code)(Java Doc) public InputSource resolveEntity(String publicId, String systemId) throws IOException, SAXException(Code)(Java Doc) public void setDocumentLocator(Locator locator)(Code)(Java Doc) public void skippedEntity(String name) throws SAXException(Code)(Java Doc) public void startDocument() throws SAXException(Code)(Java Doc) public void startElement(String uri, String localName, String qName, Attributes attributes) throws SAXException(Code)(Java Doc) public void startPrefixMapping(String prefix, String uri) throws SAXException(Code)(Java Doc) public void unparsedEntityDecl(String name, String publicId, String systemId, String notationName) throws SAXException(Code)(Java Doc) public void warning(SAXParseException e) throws SAXException(Code)(Java Doc)
|
|
|