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

de.unirostock.sems.bives.ds.MathML Maven / Gradle / Ivy

Go to download

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