Package org.w3c.dom.mathml
Interface MathMLFractionElement
-
- All Superinterfaces:
org.w3c.dom.Element,MathMLElement,MathMLPresentationElement,org.w3c.dom.Node
- All Known Implementing Classes:
Mfrac
public interface MathMLFractionElement extends MathMLPresentationElement
This interface extends the MathMLPresentationElement interface for the MathML fraction element mfrac.
-
-
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.StringgetBevelled()One of the strings true and false.java.lang.StringgetDenomalign()One of the strings left, center and right.MathMLElementgetDenominator()The second child MathMLElement of the MathMLFractionElement; represents the denominator of the represented fraction.java.lang.StringgetLinethickness()A string representing the linethickness attribute of the mfrac, if specified.java.lang.StringgetNumalign()One of the strings left, center and right.MathMLElementgetNumerator()The first child MathMLElement of the MathMLFractionElement; represents the numerator of the represented fraction.voidsetBevelled(java.lang.String bevelled)setter for the bevelled attribute.voidsetDenomalign(java.lang.String denomalign)setter for the denomalign attribute.voidsetDenominator(MathMLElement denominator)setter for the denominator attribute.voidsetLinethickness(java.lang.String linethickness)setter for the linethickness attribute.voidsetNumalign(java.lang.String numalign)setter for the numalign attribute.voidsetNumerator(MathMLElement numerator)setter for the numerator 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.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
-
getLinethickness
java.lang.String getLinethickness()
A string representing the linethickness attribute of the mfrac, if specified.- Returns:
- value of the linethickness attribute.
-
setLinethickness
void setLinethickness(java.lang.String linethickness)
setter for the linethickness attribute.- Parameters:
linethickness- new value for linethickness.- See Also:
getLinethickness()
-
getNumalign
java.lang.String getNumalign()
One of the strings left, center and right. Represents the numalign attribute of the mfrac, if specified.- Returns:
- value of the numalign attribute.
-
setNumalign
void setNumalign(java.lang.String numalign)
setter for the numalign attribute.- Parameters:
numalign- new value for numalign.- See Also:
getNumalign()
-
getDenomalign
java.lang.String getDenomalign()
One of the strings left, center and right. Represents the denomalign attribute of the mfrac, if specified.- Returns:
- value of the denomalign attribute.
-
setDenomalign
void setDenomalign(java.lang.String denomalign)
setter for the denomalign attribute.- Parameters:
denomalign- new value for denomalign.- See Also:
getDenomalign()
-
getBevelled
java.lang.String getBevelled()
One of the strings true and false. Represents the bevelled attribute of the mfrac, if specified.- Returns:
- value of the bevelled attribute.
-
setBevelled
void setBevelled(java.lang.String bevelled)
setter for the bevelled attribute.- Parameters:
bevelled- new value for bevelled.- See Also:
getBevelled()
-
getNumerator
MathMLElement getNumerator()
The first child MathMLElement of the MathMLFractionElement; represents the numerator of the represented fraction.- Returns:
- value of the numerator attribute.
-
setNumerator
void setNumerator(MathMLElement numerator)
setter for the numerator attribute.- Parameters:
numerator- new value for numerator.- See Also:
getNumerator()
-
getDenominator
MathMLElement getDenominator()
The second child MathMLElement of the MathMLFractionElement; represents the denominator of the represented fraction.- Returns:
- value of the denominator attribute.
-
setDenominator
void setDenominator(MathMLElement denominator)
setter for the denominator attribute.- Parameters:
denominator- new value for denominator.- See Also:
getDenominator()
-
-