Interface XHTMLConstants
-
- All Known Implementing Classes:
DeleteColumnOperation
,DeleteRowOperation
,InsertColumnOperation
,InsertRowOperation
,InsertSingleColumnOperation
,InsertSingleRowOperation
,SplitCellAboveBelowOperation
,SplitLeftRightOperation
,SplitOperation
,XHTMLDocumentTypeHelper
@API(type=INTERNAL, src=PUBLIC) public interface XHTMLConstants
This interface contains the name of the elements and attributes used in XHTML.
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
ATTRIBUTE_NAME_COLSPAN
The name of the attribute that specifies the column span of a table cell.static java.lang.String
ATTRIBUTE_NAME_ID
The name of the ID attribute.static java.lang.String
ATTRIBUTE_NAME_ROWSPAN
The name of the attribute that specifies the row span of a table cell.static java.lang.String
ATTRIBUTE_NAME_XML_ID
The xml:id attribute.static java.lang.String
ELEMENT_NAME_INFORMALTABLE
The name of element that defines an XHTML table for DocBook model.static java.lang.String
ELEMENT_NAME_TABLE
The name of element that defines an XHTML table.static java.lang.String
ELEMENT_NAME_TD
The name of element that defines a table cell.static java.lang.String
ELEMENT_NAME_TH
The name of element that defines a table header row.static java.lang.String
ELEMENT_NAME_THEAD
The name of the table header element.static java.lang.String
ELEMENT_NAME_TR
The name of element that defines a table row.
-
-
-
Field Detail
-
ELEMENT_NAME_TD
static final java.lang.String ELEMENT_NAME_TD
The name of element that defines a table cell. The value istd
.- See Also:
- Constant Field Values
-
ELEMENT_NAME_TR
static final java.lang.String ELEMENT_NAME_TR
The name of element that defines a table row. The value istr
.- See Also:
- Constant Field Values
-
ELEMENT_NAME_TH
static final java.lang.String ELEMENT_NAME_TH
The name of element that defines a table header row. The value isth
.- See Also:
- Constant Field Values
-
ELEMENT_NAME_TABLE
static final java.lang.String ELEMENT_NAME_TABLE
The name of element that defines an XHTML table. The value istable
.- See Also:
- Constant Field Values
-
ELEMENT_NAME_INFORMALTABLE
static final java.lang.String ELEMENT_NAME_INFORMALTABLE
The name of element that defines an XHTML table for DocBook model. The value isinformaltable
.- See Also:
- Constant Field Values
-
ATTRIBUTE_NAME_COLSPAN
static final java.lang.String ATTRIBUTE_NAME_COLSPAN
The name of the attribute that specifies the column span of a table cell. The value iscolspan
.- See Also:
- Constant Field Values
-
ATTRIBUTE_NAME_ID
static final java.lang.String ATTRIBUTE_NAME_ID
The name of the ID attribute. The value isid
.- See Also:
- Constant Field Values
-
ATTRIBUTE_NAME_XML_ID
static final java.lang.String ATTRIBUTE_NAME_XML_ID
The xml:id attribute. The value isxml:id
.- See Also:
- Constant Field Values
-
ATTRIBUTE_NAME_ROWSPAN
static final java.lang.String ATTRIBUTE_NAME_ROWSPAN
The name of the attribute that specifies the row span of a table cell. The value isrowspan
.- See Also:
- Constant Field Values
-
ELEMENT_NAME_THEAD
static final java.lang.String ELEMENT_NAME_THEAD
The name of the table header element. The value isthead
.- See Also:
- Constant Field Values
-
-