Skip to content
Snippets Groups Projects
Commit 842e8541 authored by Piotr Gawron's avatar Piotr Gawron
Browse files

JavaDoc added

parent 75755533
No related branches found
No related tags found
2 merge requests!630WIP: Resolve "The privileges of a new user are not saved in some cases",!560Resolve "add support for modifications and states in sbml export/import"
......@@ -30,14 +30,38 @@ import lcsb.mapviewer.model.map.model.Model;
import lcsb.mapviewer.model.map.species.Element;
public class SbmlBioEntityParser extends XmlParser {
Logger logger = Logger.getLogger(SbmlBioEntityParser.class);
/**
* Default class logger.
*/
private static Logger logger = Logger.getLogger(SbmlBioEntityParser.class);
/**
* SBML layout attached to parsed {@link #sbmlModel}.
*/
private Layout layout;
/**
* SBML model that we will parse;
*/
private org.sbml.jsbml.Model sbmlModel;
/**
* Our model to which we parse data.
*/
private lcsb.mapviewer.model.map.model.Model minervaModel;
/**
* Counter for identifiers that cannot be inferred from SBML.
*/
private int idCounter = 0;
/**
* Default constructor.
*
* @param sbmlModel SBML model that we are parsing
* @param minervaModel Minerva model to which we are extracting data
*/
public SbmlBioEntityParser(org.sbml.jsbml.Model sbmlModel, Model minervaModel) {
super();
this.sbmlModel = sbmlModel;
......@@ -173,7 +197,6 @@ public class SbmlBioEntityParser extends XmlParser {
return sbmlModel;
}
protected Layout getLayout() {
return layout;
}
......@@ -199,6 +222,4 @@ public class SbmlBioEntityParser extends XmlParser {
return layout;
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment