1 package JSci.mathml;2 3 import org.w3c.dom.mathml.*;4 5 /**6 * Implements a MathML predefined symbol (binary operation).7 * @version 1.08 * @author Mark Hale9 */10 public class MathMLBinaryOpImpl extends MathMLPredefinedSymbolImpl {11 /**12 * Constructs a MathML predefined symbol (binary operation).13 */14 public MathMLBinaryOpImpl(MathMLDocumentImpl owner, String qualifiedName) {15 super(owner, qualifiedName);16 }17 18 public String getArity() {19 return "2";20 }21 }22 23