| java.lang.Object org.xml.sax.helpers.DefaultHandler com.sun.jbi.ui.runtime.ComponentConfigurationParser
Method Summary | |
public void | characters(char[] ch, int start, int length) Process the character data for current tag. | public void | endDocument() End of document processing. | public void | endElement(String uri, String localName, String qName) Process the end element tag. | public ComponentConfiguration | getComponentConfiguration() | public static void | main(String[] args) | public static ComponentConfigurationParser | parse(String uriString, String[] keys) | public static ComponentConfigurationParser | parseFromString(String xmlData, String[] keys) | public void | startDocument() Start of document processing. | public void | startElement(String uri, String localName, String qName, Attributes attributes) Process the new element.
Parameters: uri - is the Namespace URI, or the empty string if the element has no Namespace URI or if Namespace processing is not being performed. Parameters: localName - is the The local name (without prefix), or the empty string if Namespace processing is not being performed. Parameters: qName - is the qualified name (with prefix), or the empty string if qualified names are not available. Parameters: attributes - is the attributes attached to the element. |
ComponentConfigurationParser | public ComponentConfigurationParser(String[] keys)(Code) | | |
characters | public void characters(char[] ch, int start, int length) throws SAXException(Code) | | Process the character data for current tag.
Parameters: ch - are the element's characters. Parameters: start - is the start position in the character array. Parameters: length - is the number of characters to use from the character array. throws: org.xml.sax.SAXException - is any SAX exception, possibly wrapping another exception. |
endElement | public void endElement(String uri, String localName, String qName) throws SAXException(Code) | | Process the end element tag.
Parameters: uri - is the Namespace URI, or the empty string if the element has no Namespace URI or if Namespace processing is not being performed. Parameters: localName - is the The local name (without prefix), or the empty string if Namespace processing is not being performed. Parameters: qName - is the qualified name (with prefix), or the empty string if qualified names are not available. throws: org.xml.sax.SAXException - is any SAX exception, possibly wrapping another exception. |
main | public static void main(String[] args)(Code) | | Parameters: args - |
startElement | public void startElement(String uri, String localName, String qName, Attributes attributes) throws SAXException(Code) | | Process the new element.
Parameters: uri - is the Namespace URI, or the empty string if the element has no Namespace URI or if Namespace processing is not being performed. Parameters: localName - is the The local name (without prefix), or the empty string if Namespace processing is not being performed. Parameters: qName - is the qualified name (with prefix), or the empty string if qualified names are not available. Parameters: attributes - is the attributes attached to the element. If there are no attributes, it shall be an empty Attributes object. throws: org.xml.sax.SAXException - is any SAX exception, possibly wrapping another exception. |
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)
|
|
|