01: package JSci.mathml;
02:
03: import org.w3c.dom.mathml.*;
04:
05: /**
06: * Implements a MathML predefined symbol (n-ary operation).
07: * @version 1.0
08: * @author Mark Hale
09: */
10: public class MathMLNaryOpImpl extends MathMLPredefinedSymbolImpl {
11: /**
12: * Constructs a MathML predefined symbol (n-ary operation).
13: */
14: public MathMLNaryOpImpl(MathMLDocumentImpl owner,
15: String qualifiedName) {
16: super (owner, qualifiedName);
17: }
18:
19: public String getArity() {
20: return "variable";
21: }
22: }
|