Package net.sf.saxon.om
Class AllElementStripper
- java.lang.Object
-
- net.sf.saxon.event.SequenceReceiver
-
- net.sf.saxon.event.ProxyReceiver
-
- net.sf.saxon.event.Stripper
-
- net.sf.saxon.om.AllElementStripper
-
-
Field Summary
-
Fields inherited from class net.sf.saxon.event.Stripper
ALWAYS_PRESERVE, ALWAYS_STRIP, CANNOT_STRIP, PRESERVE_PARENT, STRIP_DEFAULT
-
Fields inherited from class net.sf.saxon.event.ProxyReceiver
nextReceiver
-
Fields inherited from class net.sf.saxon.event.SequenceReceiver
pipelineConfiguration, previousAtomic, systemId
-
-
Constructor Summary
Constructors Constructor Description AllElementStripper()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StrippergetAnother()Get a clean copy of this stripperstatic AllElementStrippergetInstance()byteisSpacePreserving(int nameCode)Decide whether an element is in the set of white-space preserving element typesbyteisSpacePreserving(NodeInfo element)Decide whether an element is in the set of white-space preserving element types.-
Methods inherited from class net.sf.saxon.event.Stripper
attribute, characters, endElement, getStripAll, open, setPipelineConfiguration, setStripAll, startElement
-
Methods inherited from class net.sf.saxon.event.ProxyReceiver
close, comment, endDocument, getConfiguration, getDocumentLocator, getNamePool, getUnderlyingReceiver, namespace, processingInstruction, setSystemId, setUnderlyingReceiver, setUnparsedEntity, startContent, startDocument
-
Methods inherited from class net.sf.saxon.event.SequenceReceiver
append, getPipelineConfiguration, getSystemId
-
-
-
-
Method Detail
-
getInstance
public static AllElementStripper getInstance()
-
getAnother
public Stripper getAnother()
Description copied from class:StripperGet a clean copy of this stripper- Overrides:
getAnotherin classStripper
-
isSpacePreserving
public byte isSpacePreserving(int nameCode)
Decide whether an element is in the set of white-space preserving element types- Overrides:
isSpacePreservingin classStripper- Parameters:
nameCode- identifies the element being tested- Returns:
- STRIP_DEFAULT: strip spaces unless xml:space tells you not to.
-
isSpacePreserving
public byte isSpacePreserving(NodeInfo element)
Decide whether an element is in the set of white-space preserving element types. This version of the method is useful in cases where getting the namecode of the element is potentially expensive, e.g. with DOM nodes.- Overrides:
isSpacePreservingin classStripper- Parameters:
element- Identifies the element whose whitespace is possibly to be preserved- Returns:
- ALWAYS_PRESERVE if the element is in the set of white-space preserving element types, ALWAYS_STRIP if the element is to be stripped regardless of the xml:space setting, and STRIP_DEFAULT otherwise
-
-