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

JSci.mathml.MathMLSetElementImpl Maven / Gradle / Ivy

package JSci.mathml;

import org.w3c.dom.*;
import org.w3c.dom.mathml.*;

/**
 * Implements a MathML set element.
 * @version 1.0
 * @author Mark Hale
 */
public class MathMLSetElementImpl extends MathMLContentContainerImpl implements MathMLSetElement {
        /**
         * Constructs a MathML set element.
         */
        public MathMLSetElementImpl(MathMLDocumentImpl owner, String qualifiedName) {
                super (owner, qualifiedName);
        }

        public boolean getIsExplicit() {
                return !(getFirstChild() instanceof MathMLBvarElement);
        }

        public String getType() {
                return getAttribute("type");
        }
        public void setType(String type) {
                setAttribute("type", type);
        }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy