de.unirostock.sems.bives.ds.MathML Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of BiVeS-Core Show documentation
Show all versions of BiVeS-Core Show documentation
BiVeS - BioModel Version Control System
This package provides core functionality
The newest version!
/**
*
*/
package de.unirostock.sems.bives.ds;
import de.unirostock.sems.xmlutils.ds.DocumentNode;
/**
* The Class MathML to host MathML trees.
*
* @author Martin Scharm
*/
public class MathML
{
/** The node rooting the MathML subtree. */
private DocumentNode math;
/**
* Instantiates a new MathML object.
*
* @param math the node rooting the MathML subtree
*/
public MathML (DocumentNode math)
{
this.math = math;
}
/**
* Gets the document node that roots the MathML subtree.
*
* @return the document node
*/
public DocumentNode getDocumentNode ()
{
return math;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy