Location: Metabolic Component Library @ 2ac29dd97e92 / CellML-source / CellMLTools / src / tools / CellMLReader.java

Author:
Matthias K?nig <matthias.koenig@charite.de>
Date:
2013-05-17 20:14:36+02:00
Desc:
Further work on the HTML documentation.
Permanent Source URI:
https://models.cellml.org/w/matthiaskoenig/MetabolicComponentLibrary/rawfile/2ac29dd97e9204b8c5de02fa2ddf416afdd997e4/CellML-source/CellMLTools/src/tools/CellMLReader.java

package tools;
import cellml_api.CellMLBootstrap;
import cellml_api.Model;

public class CellMLReader {
	
  public static Model loadFromURL(CellMLBootstrap cb, String inputFileName){
    return cb.getModelLoader().loadFromURL(inputFileName);
  }
  
  public static Model createModel(CellMLBootstrap cb, String modelString){
    return cb.createModel(modelString);
  }
}