01: package JSci.mathml;
02:
03: import org.w3c.dom.mathml.*;
04:
05: /**
06: * Implements a MathML fenced element.
07: * @version 1.0
08: * @author Mark Hale
09: */
10: public class MathMLFencedElementImpl extends
11: MathMLPresentationContainerImpl implements MathMLFencedElement {
12: /**
13: * Constructs a MathML fenced element.
14: */
15: public MathMLFencedElementImpl(MathMLDocumentImpl owner,
16: String qualifiedName) {
17: super (owner, qualifiedName);
18: }
19:
20: public String getOpen() {
21: return getAttribute("open");
22: }
23:
24: public void setOpen(String open) {
25: setAttribute("open", open);
26: }
27:
28: public String getClose() {
29: return getAttribute("close");
30: }
31:
32: public void setClose(String close) {
33: setAttribute("close", close);
34: }
35:
36: public String getSeparators() {
37: return getAttribute("separators");
38: }
39:
40: public void setSeparators(String separators) {
41: setAttribute("separators", separators);
42: }
43: }
|