All Downloads are FREE. Search and download functionalities are using the official Maven repository.

JSci.mathml.MathMLUnaryOpImpl Maven / Gradle / Ivy

package JSci.mathml;

import org.w3c.dom.mathml.*;

/**
 * Implements a MathML predefined symbol (unary operation).
 * @version 1.0
 * @author Mark Hale
 */
public class MathMLUnaryOpImpl extends MathMLPredefinedSymbolImpl {
        /**
         * Constructs a MathML predefined symbol (unary operation).
         */
        public MathMLUnaryOpImpl(MathMLDocumentImpl owner, String qualifiedName) {
                super(owner, qualifiedName);
        }

        public String getArity() {
                return "1";
        }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy