org.w3c.dom.mathml
Interface MathMLTableCellElement

All Superinterfaces:
Element, MathMLContainer, MathMLElement, MathMLPresentationContainer, MathMLPresentationElement, 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
 String getCellindex()
          A string representing the integer index (1-based?)
 String getColumnalign()
          A string specifying an override of the inherited horizontal alignment of this cell within the table column.
 String getColumnspan()
          A string representing a positive integer that specifies the number of columns spanned by this cell.
 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.
 boolean getHasaligngroups()
          A string with the values true or false indicating whether the cell contains align groups.
 String getRowalign()
          A string specifying an override of the inherited vertical alignment of this cell within the table row.
 String getRowspan()
          A string representing a positive integer that specifies the number of rows spanned by this cell.
 void setColumnalign(String columnalign)
          setter for the columnalign attribute.
 void setColumnspan(String columnspan)
          setter for the columnspan attribute.
 void setGroupalign(String groupalign)
          setter for the groupalign attribute.
 void setRowalign(String rowalign)
          setter for the rowalign attribute.
 void setRowspan(String rowspan)
          setter for the rowspan attribute.
 
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.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.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
 
Methods inherited from interface org.w3c.dom.mathml.MathMLContainer
deleteArgument, deleteDeclaration, getArgument, getArguments, getDeclaration, getDeclarations, getNArguments, insertArgument, insertDeclaration, removeArgument, removeDeclaration, setArgument, setDeclaration
 

Method Detail

getRowspan

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(String rowspan)
setter for the rowspan attribute.

Parameters:
rowspan - new value for rowspan.
See Also:
getRowspan()

getColumnspan

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(String columnspan)
setter for the columnspan attribute.

Parameters:
columnspan - new value for columnspan.
See Also:
getColumnspan()

getRowalign

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(String rowalign)
setter for the rowalign attribute.

Parameters:
rowalign - new value for rowalign.
See Also:
getRowalign()

getColumnalign

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(String columnalign)
setter for the columnalign attribute.

Parameters:
columnalign - new value for columnalign.
See Also:
getColumnalign()

getGroupalign

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(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

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.


Copyright © 2002-2010 The JEuclid project. All Rights Reserved.