1 package JSci.mathml; 2 3 import org.w3c.dom.mathml.*; 4 5 10 public class MathMLActionElementImpl extends MathMLPresentationContainerImpl implements MathMLActionElement { 11 14 public MathMLActionElementImpl(MathMLDocumentImpl owner, String qualifiedName) { 15 super(owner, qualifiedName); 16 } 17 18 public String getActiontype() { 19 return getAttribute("actiontype"); 20 } 21 public void setActiontype(String actiontype) { 22 setAttribute("actiontype", actiontype); 23 } 24 25 public String getSelection() { 26 return getAttribute("selection"); 27 } 28 public void setSelection(String selection) { 29 setAttribute("selection", selection); 30 } 31 } 32 33 | Popular Tags |