KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > org > xml > sax > helpers > XMLFilterImpl

org.xml.sax.helpers
Class XMLFilterImpl

java.lang.Object
  extended by org.xml.sax.helpers.XMLFilterImpl
All Implemented Interfaces:
ContentHandler, DTDHandler, EntityResolver, ErrorHandler, XMLFilter, XMLReader
See Also:
Top Examples, Source Code

public void characters(char[] ch,
                       int start,
                       int length)
                throws SAXException
See Also:
Locator, ContentHandler.ignorableWhitespace(char[], int, int)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void endDocument()
                 throws SAXException
See Also:
ContentHandler.startDocument()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void endElement(String uri,
                       String localName,
                       String qName)
                throws SAXException
See Also:
ContentHandler
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void endPrefixMapping(String prefix)
                      throws SAXException
See Also:
ContentHandler.endElement(java.lang.String, java.lang.String, java.lang.String), ContentHandler.startPrefixMapping(java.lang.String, java.lang.String)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void error(SAXParseException e)
           throws SAXException
See Also:
ErrorHandler
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void fatalError(SAXParseException e)
                throws SAXException
See Also:
ErrorHandler
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public ContentHandler getContentHandler()
See Also:
XMLReader.setContentHandler(org.xml.sax.ContentHandler)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public DTDHandler getDTDHandler()
See Also:
XMLReader.setDTDHandler(org.xml.sax.DTDHandler)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public EntityResolver getEntityResolver()
See Also:
XMLReader.setEntityResolver(org.xml.sax.EntityResolver)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public ErrorHandler getErrorHandler()
See Also:
XMLReader.setErrorHandler(org.xml.sax.ErrorHandler)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public boolean getFeature(String name)
                   throws SAXNotRecognizedException,
                          SAXNotSupportedException
See Also:
XMLReader.setFeature(java.lang.String, boolean)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public XMLReader getParent()
See Also:
setParent(org.xml.sax.XMLReader), XMLFilter
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public Object getProperty(String name)
                   throws SAXNotRecognizedException,
                          SAXNotSupportedException
See Also:
XMLReader.setProperty(java.lang.String, java.lang.Object)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void ignorableWhitespace(char[] ch,
                                int start,
                                int length)
                         throws SAXException
See Also:
ContentHandler.characters(char[], int, int)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void notationDecl(String name,
                         String publicId,
                         String systemId)
                  throws SAXException
See Also:
Attributes, DTDHandler.unparsedEntityDecl(java.lang.String, java.lang.String, java.lang.String, java.lang.String)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void parse(String systemId)
           throws SAXException,
                  IOException
See Also:
XMLReader.parse(org.xml.sax.InputSource)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void parse(InputSource input)
           throws SAXException,
                  IOException
See Also:
XMLReader.setErrorHandler(org.xml.sax.ErrorHandler), XMLReader.setContentHandler(org.xml.sax.ContentHandler), XMLReader.setDTDHandler(org.xml.sax.DTDHandler), XMLReader.setEntityResolver(org.xml.sax.EntityResolver), XMLReader.parse(java.lang.String)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void processingInstruction(String target,
                                  String data)
                           throws SAXException
See Also:
ContentHandler
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public InputSource resolveEntity(String publicId,
                                 String systemId)
                          throws SAXException,
                                 IOException
See Also:
EntityResolver
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void setContentHandler(ContentHandler handler)
See Also:
XMLReader.getContentHandler()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void setDocumentLocator(Locator locator)
See Also:
ContentHandler
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void setDTDHandler(DTDHandler handler)
See Also:
XMLReader.getDTDHandler()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void setEntityResolver(EntityResolver resolver)
See Also:
XMLReader.getEntityResolver()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void setErrorHandler(ErrorHandler handler)
See Also:
XMLReader.getErrorHandler()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void setFeature(String name,
                       boolean value)
                throws SAXNotRecognizedException,
                       SAXNotSupportedException
See Also:
XMLReader.getFeature(java.lang.String)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void setParent(XMLReader parent)
See Also:
getParent(), XMLFilter
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void setProperty(String name,
                        Object value)
                 throws SAXNotRecognizedException,
                        SAXNotSupportedException
See Also:
XMLReader
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void skippedEntity(String name)
                   throws SAXException
See Also:
ContentHandler
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void startDocument()
                   throws SAXException
See Also:
ContentHandler.endDocument()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void startElement(String uri,
                         String localName,
                         String qName,
                         Attributes atts)
                  throws SAXException
See Also:
AttributesImpl, ContentHandler.endElement(java.lang.String, java.lang.String, java.lang.String)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void startPrefixMapping(String prefix,
                               String uri)
                        throws SAXException
See Also:
ContentHandler.startElement(java.lang.String, java.lang.String, java.lang.String, org.xml.sax.Attributes), ContentHandler.endPrefixMapping(java.lang.String)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void unparsedEntityDecl(String name,
                               String publicId,
                               String systemId,
                               String notationName)
                        throws SAXException
See Also:
Attributes, DTDHandler.notationDecl(java.lang.String, java.lang.String, java.lang.String)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void warning(SAXParseException e)
             throws SAXException
See Also:
ErrorHandler
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public XMLFilterImpl()
See Also:
setParent(org.xml.sax.XMLReader), XMLReader.setProperty(java.lang.String, java.lang.Object), XMLReader.setFeature(java.lang.String, boolean)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public XMLFilterImpl(XMLReader parent)
See Also:
getParent(), setParent(org.xml.sax.XMLReader)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags