| java.lang.Object org.netbeans.modules.project.libraries.LibraryDeclarationParser
LibraryDeclarationParser | public class LibraryDeclarationParser implements ContentHandler,EntityResolver(Code) | | The class reads XML documents according to specified DTD and
translates all related events into LibraryDeclarationHandler events.
Usage sample:
LibraryDeclarationParser parser = new LibraryDeclarationParser(...);
parser.parse(new InputSource("..."));
Warning: the class is machine generated. DO NOT MODIFY
|
Method Summary | |
final public void | characters(char[] chars, int start, int len) This SAX interface method is implemented by the parser. | final public void | endDocument() This SAX interface method is implemented by the parser. | final public void | endElement(String ns, String name, String qname) This SAX interface method is implemented by the parser. | final public void | endPrefixMapping(String prefix) This SAX interface method is implemented by the parser. | protected ErrorHandler | getDefaultErrorHandler() Creates default error handler used by this parser. | final public void | ignorableWhitespace(char[] chars, int start, int len) This SAX interface method is implemented by the parser. | public void | parse(InputSource input) The recognizer entry method taking an InputSource. | public void | parse(URL url) The recognizer entry method taking a URL. | public static void | parse(InputSource input, LibraryDeclarationHandler handler, LibraryDeclarationConvertor parslet) The recognizer entry method taking an Inputsource. | public static void | parse(URL url, LibraryDeclarationHandler handler, LibraryDeclarationConvertor parslet) The recognizer entry method taking a URL. | final public void | processingInstruction(String target, String data) This SAX interface method is implemented by the parser. | public InputSource | resolveEntity(String publicId, String systemId) Implementation of entity resolver. | final public void | setDocumentLocator(Locator locator) This SAX interface method is implemented by the parser. | final public void | skippedEntity(String name) This SAX interface method is implemented by the parser. | final public void | startDocument() This SAX interface method is implemented by the parser. | final public void | startElement(String ns, String name, String qname, Attributes attrs) This SAX interface method is implemented by the parser. | final public void | startPrefixMapping(String prefix, String uri) This SAX interface method is implemented by the parser. |
LibraryDeclarationParser | public LibraryDeclarationParser(LibraryDeclarationHandler handler, LibraryDeclarationConvertor parslet)(Code) | | Creates a parser instance.
Parameters: handler - handler interface implementation (never null It is recommended that it could be able to resolve at least the DTD.@param parslet convertors implementation (never null |
characters | final public void characters(char[] chars, int start, int len) throws SAXException(Code) | | This SAX interface method is implemented by the parser.
|
endDocument | final public void endDocument() throws SAXException(Code) | | This SAX interface method is implemented by the parser.
|
endPrefixMapping | final public void endPrefixMapping(String prefix) throws SAXException(Code) | | This SAX interface method is implemented by the parser.
|
getDefaultErrorHandler | protected ErrorHandler getDefaultErrorHandler()(Code) | | Creates default error handler used by this parser.
org.xml.sax.ErrorHandler implementation |
ignorableWhitespace | final public void ignorableWhitespace(char[] chars, int start, int len) throws SAXException(Code) | | This SAX interface method is implemented by the parser.
|
processingInstruction | final public void processingInstruction(String target, String data) throws SAXException(Code) | | This SAX interface method is implemented by the parser.
|
setDocumentLocator | final public void setDocumentLocator(Locator locator)(Code) | | This SAX interface method is implemented by the parser.
|
skippedEntity | final public void skippedEntity(String name) throws SAXException(Code) | | This SAX interface method is implemented by the parser.
|
startDocument | final public void startDocument() throws SAXException(Code) | | This SAX interface method is implemented by the parser.
|
startPrefixMapping | final public void startPrefixMapping(String prefix, String uri) throws SAXException(Code) | | This SAX interface method is implemented by the parser.
|
|
|