1 package JSci.mathml; 2 3 import org.w3c.dom.mathml.*; 4 5 10 public class MathMLCiElementImpl extends MathMLContentTokenImpl implements MathMLCiElement { 11 14 public MathMLCiElementImpl(MathMLDocumentImpl owner, String qualifiedName) { 15 super(owner, qualifiedName); 16 } 17 18 public String getType() { 19 return getAttribute("type"); 20 } 21 public void setType(String type) { 22 setAttribute("type", type); 23 } 24 } 25 26 | Popular Tags |