Lets applications examine nodes as they are being output.
As each element is examined, it may be modified or removed, or output may be aborted.
Java Binding:
package org.w3c.dom.ls;
public interface DOMWriterFilter extends NodeFilter {
public int getWhatToShow();
}
IDL:
interface DOMWriterFilter : traversal::NodeFilter {
readonly attribute unsigned long whatToShow;
};