Package org.w3c.dom.mathml
Interface MathMLApplyElement
- All Superinterfaces:
Element,MathMLContainer,MathMLContentContainer,MathMLContentElement,MathMLElement,Node
The apply element allows a function or operator to be applied to its
arguments.
-
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
Modifier and TypeMethodDescriptionThis attribute represents the lowlimit child element of this node (if any).The MathML element representing the function or operator that is applied to the list of arguments.This attribute represents the uplimit child element of this node (if any).voidsetLowLimit(MathMLElement lowLimit) setter for the lowLimit attribute.voidsetOperator(MathMLElement operator) setter for the operator attribute.voidsetUpLimit(MathMLElement upLimit) setter for the upLimit 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, setIdAttributeNSMethods inherited from interface org.w3c.dom.mathml.MathMLContainer
deleteArgument, deleteDeclaration, getArgument, getArguments, getDeclaration, getDeclarations, getNArguments, insertArgument, insertDeclaration, removeArgument, removeDeclaration, setArgument, setDeclarationMethods inherited from interface org.w3c.dom.mathml.MathMLContentContainer
deleteBoundVariable, getBoundVariable, getCondition, getDomainOfApplication, getMomentAbout, getNBoundVariables, getOpDegree, insertBoundVariable, removeBoundVariable, setBoundVariable, setCondition, setDomainOfApplication, setMomentAbout, setOpDegreeMethods inherited from interface org.w3c.dom.mathml.MathMLElement
getClassName, getHref, getId, getMathElementStyle, getOwnerMathElement, getXref, setClassName, setHref, setId, setMathElementStyle, setXrefMethods 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 Details
-
getOperator
MathMLElement getOperator()The MathML element representing the function or operator that is applied to the list of arguments.- Returns:
- value of the operator attribute.
-
setOperator
setter for the operator attribute.- Parameters:
operator- new value for operator.- See Also:
-
getLowLimit
MathMLElement getLowLimit()This attribute represents the lowlimit child element of this node (if any). This expresses, for instance, the lower limit of integration if this is an apply element whose first child is a int. See .- Returns:
- value of the lowLimit attribute.
-
setLowLimit
setter for the lowLimit attribute.- Parameters:
lowLimit- new value for lowLimit.- See Also:
-
getUpLimit
MathMLElement getUpLimit()This attribute represents the uplimit child element of this node (if any). This expresses, for instance, the upper limit of integration if this is an apply element whose first child is a int. See .- Returns:
- value of the upLimit attribute.
-
setUpLimit
setter for the upLimit attribute.- Parameters:
upLimit- new value for upLimit.- See Also:
-