Package org.w3c.dom.mathml
Interface MathMLFnElement
-
- All Superinterfaces:
org.w3c.dom.Element,MathMLContainer,MathMLContentContainer,MathMLContentElement,MathMLElement,org.w3c.dom.Node
public interface MathMLFnElement extends MathMLContentContainer
The fn element makes explicit the fact that a more general MathML object is intended to be used in the same manner as if it were a pre-defined function such as sin or plus.
-
-
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.StringgetDefinitionURL()A URI pointing to a definition for this function-type element.java.lang.StringgetEncoding()A string describing the syntax in which the definition located at definitionURL is given.voidsetDefinitionURL(java.lang.String definitionURL)setter for the definitionURL attribute.voidsetEncoding(java.lang.String encoding)setter for the encoding 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.MathMLContentContainer
deleteBoundVariable, getBoundVariable, getCondition, getDomainOfApplication, getMomentAbout, getNBoundVariables, getOpDegree, insertBoundVariable, removeBoundVariable, setBoundVariable, setCondition, setDomainOfApplication, setMomentAbout, setOpDegree
-
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
-
getDefinitionURL
java.lang.String getDefinitionURL()
A URI pointing to a definition for this function-type element. Note that there is no stipulation about the form this definition may take!- Returns:
- value of the definitionURL attribute.
-
setDefinitionURL
void setDefinitionURL(java.lang.String definitionURL)
setter for the definitionURL attribute.- Parameters:
definitionURL- new value for definitionURL.- See Also:
getDefinitionURL()
-
getEncoding
java.lang.String getEncoding()
A string describing the syntax in which the definition located at definitionURL is given.- Returns:
- value of the encoding attribute.
-
setEncoding
void setEncoding(java.lang.String encoding)
setter for the encoding attribute.- Parameters:
encoding- new value for encoding.- See Also:
getEncoding()
-
-