org.apache.xerces.dom3.ls
Interface DOMWriterFilter

All Superinterfaces:
org.w3c.dom.traversal.NodeFilter

public interface DOMWriterFilter
extends org.w3c.dom.traversal.NodeFilter

DOMWriterFilters provide applications the ability to examine nodes as they are being serialized. DOMWriterFilter lets the application decide what nodes should be serialized or not.

See also the Document Object Model (DOM) Level 3 Abstract Schemas and Load and Save Specification.


Fields inherited from interface org.w3c.dom.traversal.NodeFilter
FILTER_ACCEPT, FILTER_REJECT, FILTER_SKIP, SHOW_ALL, SHOW_ATTRIBUTE, SHOW_CDATA_SECTION, SHOW_COMMENT, SHOW_DOCUMENT, SHOW_DOCUMENT_FRAGMENT, SHOW_DOCUMENT_TYPE, SHOW_ELEMENT, SHOW_ENTITY, SHOW_ENTITY_REFERENCE, SHOW_NOTATION, SHOW_PROCESSING_INSTRUCTION, SHOW_TEXT
 
Method Summary
 int getWhatToShow()
          Tells the DOMWriter what types of nodes to show to the filter.
 
Methods inherited from interface org.w3c.dom.traversal.NodeFilter
acceptNode
 

Method Detail

getWhatToShow

public int getWhatToShow()
Tells the DOMWriter what types of nodes to show to the filter. See NodeFilter for definition of the constants. The constant SHOW_ATTRIBUTE is meaningless here, attribute nodes will never be passed to a DOMWriterFilter .


Copyright © 1999-2002 Apache XML Project. All Rights Reserved.