1 package JSci.mathml; 2 3 import org.w3c.dom.mathml.*; 4 5 10 public class MathMLFencedElementImpl extends MathMLPresentationContainerImpl implements MathMLFencedElement { 11 14 public MathMLFencedElementImpl(MathMLDocumentImpl owner, String qualifiedName) { 15 super(owner, qualifiedName); 16 } 17 18 public String getOpen() { 19 return getAttribute("open"); 20 } 21 public void setOpen(String open) { 22 setAttribute("open", open); 23 } 24 25 public String getClose() { 26 return getAttribute("close"); 27 } 28 public void setClose(String close) { 29 setAttribute("close", close); 30 } 31 32 public String getSeparators() { 33 return getAttribute("separators"); 34 } 35 public void setSeparators(String separators) { 36 setAttribute("separators", separators); 37 } 38 } 39 40 | Popular Tags |