API Overview API Index Package Overview Direct link to this page
JDK 1.6
  org.w3c.dom.ls. LSParserFilter View Source
Author(s)
Since
Version
Serial
Hierarchy
 LSParserFilter
Subinterfaces
Description
public interface LSParserFilter
  LSParserFilters provide applications the ability to examine nodes as they are being constructed while parsing.
See also:   
Methods
Hide/Show inherited methods
public short acceptNode (Node nodeArg)
  This method will be called by the parser at the completion of the parsing of each node.
public int getWhatToShow ()
  Tells the LSParser what types of nodes to show to the method LSParserFilter.acceptNode.
public short startElement (Element elementArg)
  The parser will call this method after each Element start tag has been scanned, but before the remainder of the Element is processed.
Fields
Hide/Show inherited fields
publicfinalstatic short FILTER_ACCEPT = "1"
Accept the node.
publicfinalstatic short FILTER_INTERRUPT = "4"
Interrupt the normal processing of the document.
publicfinalstatic short FILTER_REJECT = "2"
Reject the node and its children.
publicfinalstatic short FILTER_SKIP = "3"
  Skip this single node.
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar