Location: Metabolic Component Library @ 38fe44af096f / CellML-source / CellMLTools / src / tools / CellMLLoader.java

Author:
Randall Britten <r.britten@auckland.ac.nz>
Date:
2013-04-17 15:40:27+12:00
Desc:
Trivial whitespace changes, and moved import to be adjacent to peer import.
Permanent Source URI:
https://models.cellml.org/w/matthiaskoenig/MetabolicComponentLibrary/rawfile/38fe44af096fb53d9b250091fe0563b33b5f778f/CellML-source/CellMLTools/src/tools/CellMLLoader.java

package tools;


import cellml_api.CellMLBootstrap;

public class CellMLLoader {
  private CellMLBootstrap bootstrap;
  
  public CellMLLoader(){
    System.loadLibrary("java_cellml");
    bootstrap =  cellml_bootstrap.CellMLBootstrap.createCellMLBootstrap();
  }
  
  public CellMLBootstrap getCellMLBootstrap(){
    return bootstrap;
  }
}