Package net.sf.saxon.serialize
Interface HTMLIndenter.NameClassifier
-
- All Known Implementing Classes:
HTMLIndenter.HTMLNameClassifier
,HTMLIndenter.XHTMLNameClassifier
- Enclosing class:
- HTMLIndenter
static interface HTMLIndenter.NameClassifier
The NameClassifier classifies element names according to whether the element is (a) an inline element, and/or (b) a formatted element
-
-
Field Summary
Fields Modifier and Type Field Description static int
IS_FORMATTED
static int
IS_INLINE
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
classifyTag(NodeName name)
Classify an element name as inline, formatted, or both or neither.
-
-
-
Field Detail
-
IS_INLINE
static final int IS_INLINE
- See Also:
- Constant Field Values
-
IS_FORMATTED
static final int IS_FORMATTED
- See Also:
- Constant Field Values
-
-
Method Detail
-
classifyTag
int classifyTag(NodeName name)
Classify an element name as inline, formatted, or both or neither. This method is overridden in the XHTML indenter- Parameters:
name
- the element name- Returns:
- a bit-significant integer containing flags IS_INLINE and/or IS_FORMATTED
-
-