1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 package net.sourceforge.jeuclid.elements.presentation;
20
21 import net.sourceforge.jeuclid.elements.AbstractJEuclidElement;
22
23 import org.apache.batik.dom.AbstractDocument;
24 import org.w3c.dom.mathml.MathMLDeclareElement;
25 import org.w3c.dom.mathml.MathMLElement;
26 import org.w3c.dom.mathml.MathMLNodeList;
27 import org.w3c.dom.mathml.MathMLPresentationContainer;
28
29
30
31
32
33
34
35 public abstract class AbstractContainer extends AbstractJEuclidElement
36 implements MathMLPresentationContainer {
37
38
39
40
41
42
43
44
45
46 public AbstractContainer(final String qname, final AbstractDocument odoc) {
47 super(qname, odoc);
48 }
49
50
51 public int getNArguments() {
52 throw new UnsupportedOperationException();
53 }
54
55
56 public MathMLNodeList getArguments() {
57 throw new UnsupportedOperationException();
58 }
59
60
61 public MathMLNodeList getDeclarations() {
62 throw new UnsupportedOperationException();
63 }
64
65
66 public MathMLElement getArgument(final int index) {
67 throw new UnsupportedOperationException();
68 }
69
70
71 public MathMLElement setArgument(final MathMLElement newArgument,
72 final int index) {
73 throw new UnsupportedOperationException();
74 }
75
76
77 public MathMLElement insertArgument(final MathMLElement newArgument,
78 final int index) {
79 throw new UnsupportedOperationException();
80 }
81
82
83 public void deleteArgument(final int index) {
84 throw new UnsupportedOperationException();
85 }
86
87
88 public MathMLElement removeArgument(final int index) {
89 throw new UnsupportedOperationException();
90 }
91
92
93 public MathMLDeclareElement getDeclaration(final int index) {
94 throw new UnsupportedOperationException();
95 }
96
97
98 public MathMLDeclareElement setDeclaration(
99 final MathMLDeclareElement newDeclaration, final int index) {
100 throw new UnsupportedOperationException();
101 }
102
103
104 public MathMLDeclareElement insertDeclaration(
105 final MathMLDeclareElement newDeclaration, final int index) {
106 throw new UnsupportedOperationException();
107 }
108
109
110 public MathMLDeclareElement removeDeclaration(final int index) {
111 throw new UnsupportedOperationException();
112 }
113
114
115 public void deleteDeclaration(final int index) {
116 throw new UnsupportedOperationException();
117 }
118 }