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 -
Method Summary
Modifier and TypeMethodDescriptionint
classifyTag
(NodeName name) Classify an element name as inline, formatted, or both or neither.
-
Field Details
-
IS_INLINE
static final int IS_INLINE- See Also:
-
IS_FORMATTED
static final int IS_FORMATTED- See Also:
-
-
Method Details
-
classifyTag
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
-