1 package JSci.mathml; 2 3 import org.w3c.dom.mathml.*; 4 5 10 public class MathMLFnElementImpl extends MathMLContentContainerImpl implements MathMLFnElement { 11 14 public MathMLFnElementImpl(MathMLDocumentImpl owner, String qualifiedName) { 15 super(owner, qualifiedName); 16 } 17 18 public String getDefinitionURL() { 19 return getAttribute("definitionURL"); 20 } 21 public void setDefinitionURL(String definitionURL) { 22 setAttribute("definitionURL", definitionURL); 23 } 24 25 public String getEncoding() { 26 return getAttribute("encoding"); 27 } 28 public void setEncoding(String encoding) { 29 setAttribute("encoding", encoding); 30 } 31 } 32 33 | Popular Tags |