Package net.sf.saxon.serialize
Class HTMLIndenter.HTMLNameClassifier
- java.lang.Object
-
- net.sf.saxon.serialize.HTMLIndenter.HTMLNameClassifier
-
- All Implemented Interfaces:
HTMLIndenter.NameClassifier
- Enclosing class:
- HTMLIndenter
static class HTMLIndenter.HTMLNameClassifier extends java.lang.Object implements HTMLIndenter.NameClassifier
Class to classify HTML names
-
-
Field Summary
Fields Modifier and Type Field Description (package private) static HTMLIndenter.HTMLNameClassifier
THE_INSTANCE
-
Fields inherited from interface net.sf.saxon.serialize.HTMLIndenter.NameClassifier
IS_FORMATTED, IS_INLINE
-
-
Constructor Summary
Constructors Constructor Description HTMLNameClassifier()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
classifyTag(NodeName elemName)
Classify an element name as inline, formatted, or both or neither.
-
-
-
Field Detail
-
THE_INSTANCE
static final HTMLIndenter.HTMLNameClassifier THE_INSTANCE
-
-
Method Detail
-
classifyTag
public int classifyTag(NodeName elemName)
Classify an element name as inline, formatted, or both or neither. This method is overridden in the XHTML indenter- Specified by:
classifyTag
in interfaceHTMLIndenter.NameClassifier
- Parameters:
elemName
- the element name- Returns:
- a bit-significant integer containing flags IS_INLINE and/or IS_FORMATTED
-
-