code stringlengths 3 1.18M | language stringclasses 1
value |
|---|---|
package org.animaths.client.mathObject;
import java.util.Vector;
import org.jscience.mathMLImpl.MathMLElementImpl;
public class MathObjectMultiplyContainer extends Vector<MathObjectMultiplyElement> implements MathObjectFencableElement {
private MathObjectElement mathObjectParent;
private MathMLElementIm... | Java |
package org.animaths.client.mathObject;
public interface MathObjectFencableElement extends MathObjectElement {
public boolean hasFence();
public void setFence(boolean hasFence);
public void setParents(MathObjectElement e);
}
| Java |
package org.animaths.client.mathObject;
import org.jscience.mathMLImpl.MathMLElementImpl;
public interface MathObjectElement {
public MathObjectElement getMathObjectParent();
public MathMLElementImpl getMathMLParent();
public void setMathObjectParent(MathObjectElement mathObjectParent);
public void set... | Java |
package org.animaths.client.mathObject;
import org.jscience.mathMLImpl.MathMLDocumentImpl;
import org.jscience.mathMLImpl.MathMLElementImpl;
public class MathObjectMultiplyElement implements MathObjectElement {
private MathMLDocumentImpl owner;
private MathObjectElement mathObjectParent;
private MathMLE... | Java |
package org.animaths.client.mathObject;
import org.jscience.mathMLImpl.MathMLDocumentImpl;
public class Test {
public static void main(String[] args) {
MathMLDocumentImpl owner = new MathMLDocumentImpl();
MathObjectEquation eq = new MathObjectEquation(owner);
MathObjectAtomIdentifier x = new Math... | Java |
package org.animaths.client.mathObject;
import org.jscience.mathMLImpl.MathMLDocumentImpl;
import org.jscience.mathMLImpl.MathMLElementImpl;
import org.jscience.mathMLImpl.MathMLFencedElementImpl;
public class MathObjectFencedElement extends MathMLFencedElementImpl implements MathObjectElement {
private Mat... | Java |
/*
The contents of this file are subject to the Mozilla Public License
Version 1.1 (the "License"); you may not use this file except in
compliance with the License. You may obtain a copy of the License at
http://www.mozilla.org/MPL/
Software distributed under the License is distributed on an "AS IS"
basis, WITH... | Java |
/*
The contents of this file are subject to the Mozilla Public License
Version 1.1 (the "License"); you may not use this file except in
compliance with the License. You may obtain a copy of the License at
http://www.mozilla.org/MPL/
Software distributed under the License is distributed on an "AS IS"
basis, WITH... | Java |
/*
The contents of this file are subject to the Mozilla Public License
Version 1.1 (the "License"); you may not use this file except in
compliance with the License. You may obtain a copy of the License at
http://www.mozilla.org/MPL/
Software distributed under the License is distributed on an "AS IS"
basis, WITH... | Java |
/*
The contents of this file are subject to the Mozilla Public License
Version 1.1 (the "License"); you may not use this file except in
compliance with the License. You may obtain a copy of the License at
http://www.mozilla.org/MPL/
Software distributed under the License is distributed on an "AS IS"
basis, WITH... | Java |
/*
The contents of this file are subject to the Mozilla Public License
Version 1.1 (the "License"); you may not use this file except in
compliance with the License. You may obtain a copy of the License at
http://www.mozilla.org/MPL/
Software distributed under the License is distributed on an "AS IS"
basis, WITH... | Java |
/*
The contents of this file are subject to the Mozilla Public License
Version 1.1 (the "License"); you may not use this file except in
compliance with the License. You may obtain a copy of the License at
http://www.mozilla.org/MPL/
Software distributed under the License is distributed on an "AS IS"
basis, WITH... | Java |
/*
The contents of this file are subject to the Mozilla Public License
Version 1.1 (the "License"); you may not use this file except in
compliance with the License. You may obtain a copy of the License at
http://www.mozilla.org/MPL/
Software distributed under the License is distributed on an "AS IS"
basis, WITH... | Java |
/*
The contents of this file are subject to the Mozilla Public License
Version 1.1 (the "License"); you may not use this file except in
compliance with the License. You may obtain a copy of the License at
http://www.mozilla.org/MPL/
Software distributed under the License is distributed on an "AS IS"
basis, WITHOUT WAR... | Java |
/*
The contents of this file are subject to the Mozilla Public License
Version 1.1 (the "License"); you may not use this file except in
compliance with the License. You may obtain a copy of the License at
http://www.mozilla.org/MPL/
Software distributed under the License is distributed on an "AS IS"
basis, WITHOUT WAR... | Java |
/*
The contents of this file are subject to the Mozilla Public License
Version 1.1 (the "License"); you may not use this file except in
compliance with the License. You may obtain a copy of the License at
http://www.mozilla.org/MPL/
Software distributed under the License is distributed on an "AS IS"
basis, WITH... | Java |
/*
The contents of this file are subject to the Mozilla Public License
Version 1.1 (the "License"); you may not use this file except in
compliance with the License. You may obtain a copy of the License at
http://www.mozilla.org/MPL/
Software distributed under the License is distributed on an "AS IS"
basis, WITH... | Java |
/*
The contents of this file are subject to the Mozilla Public License
Version 1.1 (the "License"); you may not use this file except in
compliance with the License. You may obtain a copy of the License at
http://www.mozilla.org/MPL/
Software distributed under the License is distributed on an "AS IS"
basis, WITH... | Java |
/*
The contents of this file are subject to the Mozilla Public License
Version 1.1 (the "License"); you may not use this file except in
compliance with the License. You may obtain a copy of the License at
http://www.mozilla.org/MPL/
Software distributed under the License is distributed on an "AS IS"
basis, WITH... | Java |
/*
The contents of this file are subject to the Mozilla Public License
Version 1.1 (the "License"); you may not use this file except in
compliance with the License. You may obtain a copy of the License at
http://www.mozilla.org/MPL/
Software distributed under the License is distributed on an "AS IS"
basis, WITH... | Java |
/*
The contents of this file are subject to the Mozilla Public License
Version 1.1 (the "License"); you may not use this file except in
compliance with the License. You may obtain a copy of the License at
http://www.mozilla.org/MPL/
Software distributed under the License is distributed on an "AS IS"
basis, WITH... | Java |
package org.animaths.server;
import org.animaths.client.GreetingService;
import com.google.gwt.user.server.rpc.RemoteServiceServlet;
/**
* The server side implementation of the RPC service.
*/
@SuppressWarnings("serial")
public class GreetingServiceImpl extends RemoteServiceServlet implements
Greeting... | Java |
package org.w3c.dom.mathML;
/**
* DOCUMENT ME!
*
* @author $author$
* @version $Revision: 1.1 $
*/
public interface MathMLStringLitElement extends MathMLPresentationToken {
/**
* DOCUMENT ME!
*
* @return DOCUMENT ME!
*/
public String getLquote();
/**
* DOCUME... | Java |
package org.w3c.dom.mathML;
/**
* DOCUMENT ME!
*
* @author $author$
* @version $Revision: 1.1 $
*/
public interface MathMLCnElement extends MathMLContentToken {
/**
* DOCUMENT ME!
*
* @return DOCUMENT ME!
*/
public String getType();
/**
* DOCUMENT ME!
*... | Java |
package org.w3c.dom.mathML;
import org.w3c.dom.Document;
/**
* DOCUMENT ME!
*
* @author $author$
* @version $Revision: 1.1 $
*/
public interface MathMLDocument extends Document {
/**
* DOCUMENT ME!
*
* @return DOCUMENT ME!
*/
public String getReferrer();
/**
... | Java |
package org.w3c.dom.mathML;
import org.w3c.dom.DOMException;
/**
* DOCUMENT ME!
*
* @author $author$
* @version $Revision: 1.1 $
*/
public interface MathMLLabeledRowElement extends MathMLTableRowElement {
/**
* DOCUMENT ME!
*
* @return DOCUMENT ME!
*/
public MathMLEl... | Java |
package org.w3c.dom.mathML;
import org.w3c.dom.Node;
/**
* DOCUMENT ME!
*
* @author $author$
* @version $Revision: 1.2 $
*/
public interface MathMLContentToken extends MathMLContentElement {
/**
* DOCUMENT ME!
*
* @return DOCUMENT ME!
*/
public MathMLNodeList getArgu... | Java |
package org.w3c.dom.mathML;
import org.w3c.dom.DOMException;
/**
* DOCUMENT ME!
*
* @author $author$
* @version $Revision: 1.2 $
*/
public interface MathMLApplyElement extends MathMLContentContainer {
/**
* DOCUMENT ME!
*
* @return DOCUMENT ME!
*/
public MathMLElemen... | Java |
package org.w3c.dom.mathML;
/**
* DOCUMENT ME!
*
* @author $author$
* @version $Revision: 1.1 $
*/
public interface MathMLOperatorElement extends MathMLPresentationToken {
/**
* DOCUMENT ME!
*
* @return DOCUMENT ME!
*/
public String getForm();
/**
* DOCUMENT ... | Java |
package org.w3c.dom.mathML;
/**
* DOCUMENT ME!
*
* @author $author$
* @version $Revision: 1.1 $
*/
public interface MathMLContentElement extends MathMLElement {
}
;
| Java |
package org.w3c.dom.mathML;
/**
* DOCUMENT ME!
*
* @author $author$
* @version $Revision: 1.1 $
*/
public interface MathMLEncloseElement extends MathMLPresentationContainer {
/**
* DOCUMENT ME!
*
* @return DOCUMENT ME!
*/
public String getNotation();
/**
* DO... | Java |
package org.w3c.dom.mathML;
/**
* DOCUMENT ME!
*
* @author $author$
* @version $Revision: 1.1 $
*/
public interface MathMLListElement extends MathMLContentContainer {
/**
* DOCUMENT ME!
*
* @return DOCUMENT ME!
*/
public boolean getIsExplicit();
/**
* DOCUMEN... | Java |
package org.w3c.dom.mathML;
/**
* DOCUMENT ME!
*
* @author $author$
* @version $Revision: 1.1 $
*/
public interface MathMLCiElement extends MathMLContentToken {
/**
* DOCUMENT ME!
*
* @return DOCUMENT ME!
*/
public String getType();
/**
* DOCUMENT ME!
*... | Java |
package org.w3c.dom.mathML;
/**
* DOCUMENT ME!
*
* @author $author$
* @version $Revision: 1.1 $
*/
public interface MathMLCsymbolElement extends MathMLContentToken {
}
;
| Java |
package org.w3c.dom.mathML;
/**
* DOCUMENT ME!
*
* @author $author$
* @version $Revision: 1.1 $
*/
public interface MathMLActionElement extends MathMLPresentationContainer {
/**
* DOCUMENT ME!
*
* @return DOCUMENT ME!
*/
public String getActiontype();
/**
* D... | Java |
package org.w3c.dom.mathML;
/**
* DOCUMENT ME!
*
* @author $author$
* @version $Revision: 1.1 $
*/
public interface MathMLSetElement extends MathMLContentContainer {
/**
* DOCUMENT ME!
*
* @return DOCUMENT ME!
*/
public boolean getIsExplicit();
/**
* DOCUMENT... | Java |
package org.w3c.dom.mathML;
/**
* DOCUMENT ME!
*
* @author $author$
* @version $Revision: 1.1 $
*/
public interface MathMLXMLAnnotationElement extends MathMLElement {
/**
* DOCUMENT ME!
*
* @return DOCUMENT ME!
*/
public String getEncoding();
/**
* DOCUMENT M... | Java |
package org.w3c.dom.mathML;
/**
* DOCUMENT ME!
*
* @author $author$
* @version $Revision: 1.1 $
*/
public interface MathMLStyleElement extends MathMLPresentationContainer {
/**
* DOCUMENT ME!
*
* @return DOCUMENT ME!
*/
public String getScriptlevel();
/**
* D... | Java |
package org.w3c.dom.mathML;
/**
* DOCUMENT ME!
*
* @author $author$
* @version $Revision: 1.1 $
*/
public interface MathMLSpaceElement extends MathMLPresentationElement {
/**
* DOCUMENT ME!
*
* @return DOCUMENT ME!
*/
public String getWidth();
/**
* DOCUMENT ... | Java |
package org.w3c.dom.mathML;
/**
* DOCUMENT ME!
*
* @author $author$
* @version $Revision: 1.1 $
*/
public interface MathMLFencedElement extends MathMLPresentationContainer {
/**
* DOCUMENT ME!
*
* @return DOCUMENT ME!
*/
public String getOpen();
/**
* DOCUMEN... | Java |
package org.w3c.dom.mathML;
/**
* DOCUMENT ME!
*
* @author $author$
* @version $Revision: 1.1 $
*/
public interface MathMLIntervalElement extends MathMLContentElement {
/**
* DOCUMENT ME!
*
* @return DOCUMENT ME!
*/
public String getClosure();
/**
* DOCUMENT ... | Java |
package org.w3c.dom.mathML;
import org.w3c.dom.DOMException;
/**
* DOCUMENT ME!
*
* @author $author$
* @version $Revision: 1.2 $
*/
public interface MathMLVectorElement extends MathMLContentElement {
/**
* DOCUMENT ME!
*
* @return DOCUMENT ME!
*/
public int getNcompo... | Java |
package org.w3c.dom.mathML;
import org.w3c.dom.DOMException;
/**
* DOCUMENT ME!
*
* @author $author$
* @version $Revision: 1.1 $
*/
public interface MathMLContainer {
/**
* DOCUMENT ME!
*
* @return DOCUMENT ME!
*/
public int getNArguments();
/**
* DOCUME... | Java |
package org.w3c.dom.mathML;
import org.w3c.dom.Element;
/**
* DOCUMENT ME!
*
* @author $author$
* @version $Revision: 1.1 $
*/
public interface MathMLElement extends Element {
/**
* DOCUMENT ME!
*
* @return DOCUMENT ME!
*/
public String getClassName();
/**
... | Java |
package org.w3c.dom.mathML;
/**
* DOCUMENT ME!
*
* @author $author$
* @version $Revision: 1.1 $
*/
public interface MathMLAnnotationElement extends MathMLElement {
/**
* DOCUMENT ME!
*
* @return DOCUMENT ME!
*/
public String getBody();
/**
* DOCUMENT ME!
... | Java |
package org.w3c.dom.mathML;
/**
* DOCUMENT ME!
*
* @author $author$
* @version $Revision: 1.1 $
*/
public interface MathMLPaddedElement extends MathMLPresentationContainer {
/**
* DOCUMENT ME!
*
* @return DOCUMENT ME!
*/
public String getWidth();
/**
* DOCUME... | Java |
package org.w3c.dom.mathML;
/**
* DOCUMENT ME!
*
* @author $author$
* @version $Revision: 1.1 $
*/
public interface MathMLBvarElement extends MathMLContentContainer {
}
;
| Java |
package org.w3c.dom.mathML;
/**
* DOCUMENT ME!
*
* @author $author$
* @version $Revision: 1.1 $
*/
public interface MathMLLambdaElement extends MathMLContentContainer {
/**
* DOCUMENT ME!
*
* @return DOCUMENT ME!
*/
public MathMLElement getExpression();
/**
*... | Java |
package org.w3c.dom.mathML;
import org.w3c.dom.NodeList;
/**
* DOCUMENT ME!
*
* @author $author$
* @version $Revision: 1.1 $
*/
public interface MathMLNodeList extends NodeList {
}
;
| Java |
package org.w3c.dom.mathML;
import org.w3c.dom.DOMException;
/**
* DOCUMENT ME!
*
* @author $author$
* @version $Revision: 1.1 $
*/
public interface MathMLSemanticsElement extends MathMLElement {
/**
* DOCUMENT ME!
*
* @return DOCUMENT ME!
*/
public MathMLElement get... | Java |
package org.w3c.dom.mathML;
import org.w3c.dom.DOMException;
/**
* DOCUMENT ME!
*
* @author $author$
* @version $Revision: 1.1 $
*/
public interface MathMLMatrixrowElement extends MathMLContentElement {
/**
* DOCUMENT ME!
*
* @return DOCUMENT ME!
*/
public int getNEn... | Java |
package org.w3c.dom.mathML;
/**
* DOCUMENT ME!
*
* @author $author$
* @version $Revision: 1.1 $
*/
public interface MathMLPredefinedSymbol extends MathMLContentElement {
/**
* DOCUMENT ME!
*
* @return DOCUMENT ME!
*/
public String getDefinitionURL();
/**
* DO... | Java |
package org.w3c.dom.mathML;
/**
* DOCUMENT ME!
*
* @author $author$
* @version $Revision: 1.1 $
*/
public interface MathMLTendsToElement extends MathMLPredefinedSymbol {
/**
* DOCUMENT ME!
*
* @return DOCUMENT ME!
*/
public String getType();
/**
* DOCUMENT ME... | Java |
package org.w3c.dom.mathML;
import org.w3c.dom.DOMException;
/**
* DOCUMENT ME!
*
* @author $author$
* @version $Revision: 1.1 $
*/
public interface MathMLContentContainer extends MathMLContentElement,
MathMLContainer {
/**
* DOCUMENT ME!
*
* @return DOCUMENT ME!
*/
... | Java |
package org.w3c.dom.mathML;
/**
* DOCUMENT ME!
*
* @author $author$
* @version $Revision: 1.1 $
*/
public interface MathMLPresentationContainer extends MathMLPresentationElement,
MathMLContainer {
}
;
| Java |
package org.w3c.dom.mathML;
/**
* DOCUMENT ME!
*
* @author $author$
* @version $Revision: 1.1 $
*/
public interface MathMLFnElement extends MathMLContentContainer {
/**
* DOCUMENT ME!
*
* @return DOCUMENT ME!
*/
public String getDefinitionURL();
/**
* DOCUMEN... | Java |
package org.w3c.dom.mathML;
/**
* DOCUMENT ME!
*
* @author $author$
* @version $Revision: 1.1 $
*/
public interface MathMLConditionElement extends MathMLContentElement {
/**
* DOCUMENT ME!
*
* @return DOCUMENT ME!
*/
public MathMLApplyElement getCondition();
/**
... | Java |
package org.w3c.dom.mathML;
import org.w3c.dom.DOMException;
/**
* DOCUMENT ME!
*
* @author $author$
* @version $Revision: 1.2 $
*/
public interface MathMLPiecewiseElement extends MathMLContentElement {
/**
* DOCUMENT ME!
*
* @return DOCUMENT ME!
*/
public MathMLNode... | Java |
package org.w3c.dom.mathML;
import org.w3c.dom.DOMException;
/**
* DOCUMENT ME!
*
* @author $author$
* @version $Revision: 1.2 $
*/
public interface MathMLScriptElement extends MathMLPresentationElement {
/**
* DOCUMENT ME!
*
* @return DOCUMENT ME!
*/
public String g... | Java |
package org.w3c.dom.mathML;
/**
* DOCUMENT ME!
*
* @author $author$
* @version $Revision: 1.1 $
*/
public interface MathMLAlignMarkElement extends MathMLPresentationElement {
/**
* DOCUMENT ME!
*
* @return DOCUMENT ME!
*/
public String getEdge();
/**
* DOCUME... | Java |
package org.w3c.dom.mathML;
/**
* DOCUMENT ME!
*
* @author $author$
* @version $Revision: 1.1 $
*/
public interface MathMLMathElement extends MathMLElement, MathMLContainer {
/**
* DOCUMENT ME!
*
* @return DOCUMENT ME!
*/
public String getMacros();
/**
* DOCU... | Java |
package org.w3c.dom.mathML;
/**
* DOCUMENT ME!
*
* @author $author$
* @version $Revision: 1.1 $
*/
public interface MathMLCaseElement extends MathMLContentElement {
/**
* DOCUMENT ME!
*
* @return DOCUMENT ME!
*/
public MathMLContentElement getCaseCondition();
/**
... | Java |
package org.w3c.dom.mathML;
import org.w3c.dom.DOMException;
/**
* DOCUMENT ME!
*
* @author $author$
* @version $Revision: 1.1 $
*/
public interface MathMLUnderOverElement extends MathMLPresentationElement {
/**
* DOCUMENT ME!
*
* @return DOCUMENT ME!
*/
public Strin... | Java |
package org.w3c.dom.mathML;
import org.w3c.dom.DOMException;
/**
* DOCUMENT ME!
*
* @author $author$
* @version $Revision: 1.1 $
*/
public interface MathMLTableElement extends MathMLPresentationElement {
/**
* DOCUMENT ME!
*
* @return DOCUMENT ME!
*/
public String ge... | Java |
package org.w3c.dom.mathML;
/**
* DOCUMENT ME!
*
* @author $author$
* @version $Revision: 1.1 $
*/
public interface MathMLRadicalElement extends MathMLPresentationElement {
/**
* DOCUMENT ME!
*
* @return DOCUMENT ME!
*/
public MathMLElement getRadicand();
/**
... | Java |
package org.w3c.dom.mathML;
import org.w3c.dom.DOMException;
/**
* DOCUMENT ME!
*
* @author $author$
* @version $Revision: 1.1 $
*/
public interface MathMLMultiScriptsElement extends MathMLPresentationElement {
/**
* DOCUMENT ME!
*
* @return DOCUMENT ME!
*/
public St... | Java |
package org.w3c.dom.mathML;
/**
* DOCUMENT ME!
*
* @author $author$
* @version $Revision: 1.1 $
*/
public interface MathMLGlyphElement extends MathMLPresentationElement {
/**
* DOCUMENT ME!
*
* @return DOCUMENT ME!
*/
public String getAlt();
/**
* DOCUMENT ME... | Java |
package org.w3c.dom.mathML;
/**
* DOCUMENT ME!
*
* @author $author$
* @version $Revision: 1.1 $
*/
public interface MathMLPresentationElement extends MathMLElement {
}
;
| Java |
package org.w3c.dom.mathML;
/**
* DOCUMENT ME!
*
* @author $author$
* @version $Revision: 1.1 $
*/
public interface MathMLTableCellElement extends MathMLPresentationContainer {
/**
* DOCUMENT ME!
*
* @return DOCUMENT ME!
*/
public String getRowspan();
/**
* D... | Java |
package org.w3c.dom.mathML;
import org.w3c.dom.DOMException;
/**
* DOCUMENT ME!
*
* @author $author$
* @version $Revision: 1.1 $
*/
public interface MathMLMatrixElement extends MathMLContentElement {
/**
* DOCUMENT ME!
*
* @return DOCUMENT ME!
*/
public int getNrows(... | Java |
package org.w3c.dom.mathML;
import org.w3c.dom.DOMException;
/**
* DOCUMENT ME!
*
* @author $author$
* @version $Revision: 1.1 $
*/
public interface MathMLTableRowElement extends MathMLPresentationElement {
/**
* DOCUMENT ME!
*
* @return DOCUMENT ME!
*/
public String... | Java |
package org.w3c.dom.mathML;
import org.w3c.dom.DOMImplementation;
/**
* DOCUMENT ME!
*
* @author $author$
* @version $Revision: 1.1 $
*/
public interface MathMLDOMImplementation extends DOMImplementation {
/**
* DOCUMENT ME!
*
* @return DOCUMENT ME!
*/
public MathMLD... | Java |
package org.w3c.dom.mathML;
/**
* DOCUMENT ME!
*
* @author $author$
* @version $Revision: 1.1 $
*/
public interface MathMLPresentationToken extends MathMLPresentationElement {
/**
* DOCUMENT ME!
*
* @return DOCUMENT ME!
*/
public String getMathvariant();
/**
... | Java |
package org.w3c.dom.mathML;
/**
* DOCUMENT ME!
*
* @author $author$
* @version $Revision: 1.1 $
*/
public interface MathMLFractionElement extends MathMLPresentationElement {
/**
* DOCUMENT ME!
*
* @return DOCUMENT ME!
*/
public String getLinethickness();
/**
... | Java |
package org.w3c.dom.mathML;
/**
* DOCUMENT ME!
*
* @author $author$
* @version $Revision: 1.1 $
*/
public interface MathMLDeclareElement extends MathMLContentElement {
/**
* DOCUMENT ME!
*
* @return DOCUMENT ME!
*/
public String getType();
/**
* DOCUMENT ME!
... | Java |
package org.w3c.dom.mathML;
/**
* DOCUMENT ME!
*
* @author $author$
* @version $Revision: 1.1 $
*/
public interface MathMLAlignGroupElement extends MathMLPresentationElement {
/**
* DOCUMENT ME!
*
* @return DOCUMENT ME!
*/
public String getGroupalign();
/**
*... | Java |
package org.jscience.mathMLImpl;
import org.w3c.dom.DOMException;
import org.w3c.dom.mathML.MathMLApplyElement;
import org.w3c.dom.mathML.MathMLElement;
/**
* Implements a MathML <code>apply</code> element.
*
* @author Mark Hale
* @version 1.0
*/
public class MathMLApplyElementImpl extends MathMLCo... | Java |
package org.jscience.mathMLImpl;
import org.w3c.dom.mathML.MathMLApplyElement;
import org.w3c.dom.mathML.MathMLConditionElement;
/**
* Implements a MathML condition element.
*
* @author Mark Hale
* @version 1.0
*/
public class MathMLConditionElementImpl extends MathMLElementImpl
implements Math... | Java |
package org.jscience.mathMLImpl;
import org.w3c.dom.DOMException;
import org.w3c.dom.Node;
import org.w3c.dom.mathML.MathMLDeclareElement;
import org.w3c.dom.mathML.MathMLElement;
import org.w3c.dom.mathML.MathMLMathElement;
import org.w3c.dom.mathML.MathMLNodeList;
/**
* Implements a MathML <code>math</... | Java |
package org.jscience.mathMLImpl;
/**
* Implements a MathML predefined symbol (unary operation).
*
* @author Mark Hale
* @version 1.0
*/
public class MathMLUnaryOpImpl extends MathMLPredefinedSymbolImpl {
/**
* Constructs a MathML predefined symbol (unary operation).
*
* @param owner ... | Java |
package org.jscience.mathMLImpl;
/**
* Implements a MathML predefined symbol (binary relation).
*
* @author Mark Hale
* @version 1.0
*/
public class MathMLBinaryRelImpl extends MathMLPredefinedSymbolImpl {
/**
* Constructs a MathML predefined symbol (binary relation).
*
* @param owner ... | Java |
package org.jscience.mathMLImpl;
import org.w3c.dom.DOMException;
import org.w3c.dom.mathML.MathMLElement;
import org.w3c.dom.mathML.MathMLUnderOverElement;
/**
* Implements a MathML under-over element.
*
* @author Mark Hale
* @version 1.0
*/
public class MathMLUnderOverElementImpl extends MathMLEl... | Java |
package org.jscience.mathMLImpl;
import org.w3c.dom.Node;
import org.w3c.dom.mathML.MathMLContentToken;
import org.w3c.dom.mathML.MathMLNodeList;
/**
* Implements a MathML content token.
*
* @author Mark Hale
* @version 1.0
*/
public class MathMLContentTokenImpl extends MathMLElementImpl
imple... | Java |
package org.jscience.mathMLImpl;
import org.w3c.dom.mathML.MathMLElement;
import org.w3c.dom.mathML.MathMLFractionElement;
/**
* Implements a MathML fraction element.
*
* @author Mark Hale
* @version 1.0
*/
public class MathMLFractionElementImpl extends MathMLElementImpl
implements MathMLFracti... | Java |
package org.jscience.mathMLImpl;
/**
* Implements a MathML predefined symbol (binary operation).
*
* @author Mark Hale
* @version 1.0
*/
public class MathMLBinaryOpImpl extends MathMLPredefinedSymbolImpl {
/**
* Constructs a MathML predefined symbol (binary operation).
*
* @param owner ... | Java |
package org.jscience.mathMLImpl;
import org.w3c.dom.mathML.MathMLElement;
import org.w3c.dom.mathML.MathMLRadicalElement;
/**
* Implements a MathML radical element.
*
* @author Mark Hale
* @version 1.0
*/
public class MathMLRadicalElementImpl extends MathMLElementImpl
implements MathMLRadicalEl... | Java |
package org.jscience.mathMLImpl;
import org.w3c.dom.mathML.MathMLCiElement;
/**
* Implements a MathML content identifier element.
*
* @author Mark Hale
* @version 1.0
*/
public class MathMLCiElementImpl extends MathMLContentTokenImpl
implements MathMLCiElement {
/**
* Constructs a MathML ... | Java |
package org.jscience.mathMLImpl;
import org.w3c.dom.DOMException;
import org.w3c.dom.Node;
import org.w3c.dom.mathML.MathMLContentElement;
import org.w3c.dom.mathML.MathMLMatrixrowElement;
/**
* Implements a MathML <code>matrixrow</code> element.
*
* @author Mark Hale
* @version 1.0
*/
public clas... | Java |
package org.jscience.mathMLImpl;
import org.apache.xerces.dom.DOMImplementationImpl;
import org.w3c.dom.DOMImplementation;
import org.w3c.dom.mathML.MathMLDOMImplementation;
import org.w3c.dom.mathML.MathMLDocument;
/**
* Implements a MathML DOM implementation.
*
* @author Mark Hale
* @version 1.0
... | Java |
package org.jscience.mathMLImpl;
import org.w3c.dom.mathML.MathMLAlignMarkElement;
/**
* Implements a MathML align mark element.
*
* @author Mark Hale
* @version 1.0
*/
public class MathMLAlignMarkElementImpl extends MathMLElementImpl
implements MathMLAlignMarkElement {
/**
* Constructs a... | Java |
package org.jscience.mathMLImpl;
/**
* Implements a MathML predefined symbol (n-ary relation).
*
* @author Mark Hale
* @version 1.0
*/
public class MathMLNaryRelImpl extends MathMLPredefinedSymbolImpl {
/**
* Constructs a MathML predefined symbol (n-ary relation).
*
* @param owner ... | Java |
package org.jscience.mathMLImpl;
import org.w3c.dom.mathML.MathMLXMLAnnotationElement;
/**
* Implements a MathML XML annotation element.
*
* @author Mark Hale
* @version 1.0
*/
public class MathMLXMLAnnotationElementImpl extends MathMLElementImpl
implements MathMLXMLAnnotationElement {
/**
... | Java |
package org.jscience.mathMLImpl;
import org.w3c.dom.mathML.MathMLSpaceElement;
/**
* Implements a MathML space element.
*
* @author Mark Hale
* @version 1.0
*/
public class MathMLSpaceElementImpl extends MathMLElementImpl
implements MathMLSpaceElement {
/**
* Constructs a MathML space ele... | Java |
package org.jscience.mathMLImpl;
/**
* Implements a MathML predefined symbol (n-ary operation).
*
* @author Mark Hale
* @version 1.0
*/
public class MathMLNaryOpImpl extends MathMLPredefinedSymbolImpl {
/**
* Constructs a MathML predefined symbol (n-ary operation).
*
* @param owner ... | Java |
package org.jscience.mathMLImpl;
import org.w3c.dom.mathML.MathMLBvarElement;
import org.w3c.dom.mathML.MathMLSetElement;
/**
* Implements a MathML <code>set</code> element.
*
* @author Mark Hale
* @version 1.0
*/
public class MathMLSetElementImpl extends MathMLContentContainerImpl
implements M... | Java |
package org.jscience.mathMLImpl;
/**
* Implements a MathML predefined symbol (function).
*
* @author Mark Hale
* @version 1.0
*/
public class MathMLFunctionImpl extends MathMLPredefinedSymbolImpl {
/**
* Constructs a MathML predefined symbol (function).
*
* @param owner DOCUMENT... | Java |
package org.jscience.mathMLImpl;
import org.w3c.dom.mathML.MathMLPaddedElement;
/**
* Implements a MathML padded element.
*
* @author Mark Hale
* @version 1.0
*/
public class MathMLPaddedElementImpl extends MathMLPresentationContainerImpl
implements MathMLPaddedElement {
/**
* Constructs ... | Java |
package org.jscience.mathMLImpl;
import org.w3c.dom.mathML.MathMLCnElement;
/**
* Implements a MathML numeric content element.
*
* @author Mark Hale
* @version 1.0
*/
public class MathMLCnElementImpl extends MathMLContentTokenImpl
implements MathMLCnElement {
/**
* Constructs a MathML num... | Java |
package org.jscience.mathMLImpl;
import org.w3c.dom.mathML.MathMLActionElement;
/**
* Implements a MathML action element.
*
* @author Mark Hale
* @version 1.0
*/
public class MathMLActionElementImpl extends MathMLPresentationContainerImpl
implements MathMLActionElement {
/**
* Constructs ... | Java |
package org.jscience.mathMLImpl;
import org.w3c.dom.DOMException;
import org.w3c.dom.Node;
import org.w3c.dom.mathML.MathMLDeclareElement;
import org.w3c.dom.mathML.MathMLElement;
import org.w3c.dom.mathML.MathMLNodeList;
import org.w3c.dom.mathML.MathMLPresentationContainer;
/**
* Implements a MathML pr... | Java |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.