Package org.w3c.dom.mathml
Interface MathMLTableCellElement
-
- All Superinterfaces:
org.w3c.dom.Element,MathMLContainer,MathMLElement,MathMLPresentationContainer,MathMLPresentationElement,org.w3c.dom.Node
- All Known Implementing Classes:
Mtd
public interface MathMLTableCellElement extends MathMLPresentationContainer
This interface extends the MathMLPresentationContainer interface for the MathML table or matrix cell element mtd.
-
-
Field Summary
-
Fields inherited from interface org.w3c.dom.Node
ATTRIBUTE_NODE, CDATA_SECTION_NODE, COMMENT_NODE, DOCUMENT_FRAGMENT_NODE, DOCUMENT_NODE, DOCUMENT_POSITION_CONTAINED_BY, DOCUMENT_POSITION_CONTAINS, DOCUMENT_POSITION_DISCONNECTED, DOCUMENT_POSITION_FOLLOWING, DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC, DOCUMENT_POSITION_PRECEDING, DOCUMENT_TYPE_NODE, ELEMENT_NODE, ENTITY_NODE, ENTITY_REFERENCE_NODE, NOTATION_NODE, PROCESSING_INSTRUCTION_NODE, TEXT_NODE
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetCellindex()A string representing the integer index (1-based?) of the cell in its containing row.java.lang.StringgetColumnalign()A string specifying an override of the inherited horizontal alignment of this cell within the table column.java.lang.StringgetColumnspan()A string representing a positive integer that specifies the number of columns spanned by this cell.java.lang.StringgetGroupalign()A string specifying how the alignment groups within the cell are to be aligned with those in cells above or below this cell.booleangetHasaligngroups()A string with the values true or false indicating whether the cell contains align groups.java.lang.StringgetRowalign()A string specifying an override of the inherited vertical alignment of this cell within the table row.java.lang.StringgetRowspan()A string representing a positive integer that specifies the number of rows spanned by this cell.voidsetColumnalign(java.lang.String columnalign)setter for the columnalign attribute.voidsetColumnspan(java.lang.String columnspan)setter for the columnspan attribute.voidsetGroupalign(java.lang.String groupalign)setter for the groupalign attribute.voidsetRowalign(java.lang.String rowalign)setter for the rowalign attribute.voidsetRowspan(java.lang.String rowspan)setter for the rowspan attribute.-
Methods inherited from interface org.w3c.dom.Element
getAttribute, getAttributeNode, getAttributeNodeNS, getAttributeNS, getElementsByTagName, getElementsByTagNameNS, getSchemaTypeInfo, getTagName, hasAttribute, hasAttributeNS, removeAttribute, removeAttributeNode, removeAttributeNS, setAttribute, setAttributeNode, setAttributeNodeNS, setAttributeNS, setIdAttribute, setIdAttributeNode, setIdAttributeNS
-
Methods inherited from interface org.w3c.dom.mathml.MathMLContainer
deleteArgument, deleteDeclaration, getArgument, getArguments, getDeclaration, getDeclarations, getNArguments, insertArgument, insertDeclaration, removeArgument, removeDeclaration, setArgument, setDeclaration
-
Methods inherited from interface org.w3c.dom.mathml.MathMLElement
getClassName, getHref, getId, getMathElementStyle, getOwnerMathElement, getXref, setClassName, setHref, setId, setMathElementStyle, setXref
-
Methods inherited from interface org.w3c.dom.Node
appendChild, cloneNode, compareDocumentPosition, getAttributes, getBaseURI, getChildNodes, getFeature, getFirstChild, getLastChild, getLocalName, getNamespaceURI, getNextSibling, getNodeName, getNodeType, getNodeValue, getOwnerDocument, getParentNode, getPrefix, getPreviousSibling, getTextContent, getUserData, hasAttributes, hasChildNodes, insertBefore, isDefaultNamespace, isEqualNode, isSameNode, isSupported, lookupNamespaceURI, lookupPrefix, normalize, removeChild, replaceChild, setNodeValue, setPrefix, setTextContent, setUserData
-
-
-
-
Method Detail
-
getRowspan
java.lang.String getRowspan()
A string representing a positive integer that specifies the number of rows spanned by this cell. The default is 1.- Returns:
- value of the rowspan attribute.
-
setRowspan
void setRowspan(java.lang.String rowspan)
setter for the rowspan attribute.- Parameters:
rowspan- new value for rowspan.- See Also:
getRowspan()
-
getColumnspan
java.lang.String getColumnspan()
A string representing a positive integer that specifies the number of columns spanned by this cell. The default is 1.- Returns:
- value of the columnspan attribute.
-
setColumnspan
void setColumnspan(java.lang.String columnspan)
setter for the columnspan attribute.- Parameters:
columnspan- new value for columnspan.- See Also:
getColumnspan()
-
getRowalign
java.lang.String getRowalign()
A string specifying an override of the inherited vertical alignment of this cell within the table row. Allowed values are top, bottom, center, baseline, and axis.- Returns:
- value of the rowalign attribute.
-
setRowalign
void setRowalign(java.lang.String rowalign)
setter for the rowalign attribute.- Parameters:
rowalign- new value for rowalign.- See Also:
getRowalign()
-
getColumnalign
java.lang.String getColumnalign()
A string specifying an override of the inherited horizontal alignment of this cell within the table column. Allowed values are left, center, and right.- Returns:
- value of the columnalign attribute.
-
setColumnalign
void setColumnalign(java.lang.String columnalign)
setter for the columnalign attribute.- Parameters:
columnalign- new value for columnalign.- See Also:
getColumnalign()
-
getGroupalign
java.lang.String getGroupalign()
A string specifying how the alignment groups within the cell are to be aligned with those in cells above or below this cell. The string consists of a space-separated sequence of specifiers, each of which can have the following values: left, right, center, or decimalpoint.- Returns:
- value of the groupalign attribute.
-
setGroupalign
void setGroupalign(java.lang.String groupalign)
setter for the groupalign attribute.- Parameters:
groupalign- new value for groupalign.- See Also:
getGroupalign()
-
getHasaligngroups
boolean getHasaligngroups()
A string with the values true or false indicating whether the cell contains align groups.- Returns:
- value of the hasaligngroups attribute.
-
getCellindex
java.lang.String getCellindex()
A string representing the integer index (1-based?) of the cell in its containing row. [What about spanning cells? How do these affect this value?]- Returns:
- value of the cellindex attribute.
-
-