org.apache.xml.dtm
Interface DTMWSFilter
- DOMWSFilter, TransformerImpl
public interface DTMWSFilter
This interface is meant to be implemented by a client of the DTM, and allows
stripping of whitespace nodes.
static short | INHERIT - Inherit whitespace stripping behavior of the parent node.
|
static short | NOTSTRIP - Do not strip whitespace child nodes of this element.
|
static short | STRIP - Strip whitespace child nodes of this element.
|
short | getShouldStripSpace(int elementHandle, DTM dtm) - Test whether whitespace-only text nodes are visible in the logical
view of
DTM .
|
INHERIT
public static final short INHERIT
Inherit whitespace stripping behavior of the parent node.
- 3
NOTSTRIP
public static final short NOTSTRIP
Do not strip whitespace child nodes of this element.
- 1
STRIP
public static final short STRIP
Strip whitespace child nodes of this element.
- 2
getShouldStripSpace
public short getShouldStripSpace(int elementHandle,
DTM dtm)
Test whether whitespace-only text nodes are visible in the logical
view of DTM
. Normally, this function
will be called by the implementation of DTM
;
it is not normally called directly from
user code.
elementHandle
- int Handle of the element.
- one of NOTSTRIP, STRIP, or INHERIT.
Copyright B) 2004 Apache XML Project. All Rights Reserved.