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