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