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