1 package JSci.mathml; 2 3 import org.w3c.dom.*; 4 import org.w3c.dom.mathml.*; 5 6 11 public class MathMLSetElementImpl extends MathMLContentContainerImpl implements MathMLSetElement { 12 15 public MathMLSetElementImpl(MathMLDocumentImpl owner, String qualifiedName) { 16 super (owner, qualifiedName); 17 } 18 19 public boolean getIsExplicit() { 20 return !(getFirstChild() instanceof MathMLBvarElement); 21 } 22 23 public String getType() { 24 return getAttribute("type"); 25 } 26 public void setType(String type) { 27 setAttribute("type", type); 28 } 29 } 30 31 | Popular Tags |