Package org.sbml.jsbml.validator

Examples of org.sbml.jsbml.validator.ModelOverdeterminedException


   */
  public Variable getDerivedVariable() throws ModelOverdeterminedException {
    OverdeterminationValidator odv = new OverdeterminationValidator(
        getModel());
    if (odv.isOverdetermined()) {
      throw new ModelOverdeterminedException();
    }
    return (Variable) odv.getMatching().get(this);
  }
View Full Code Here


   */
  public Variable getDerivedVariable() throws ModelOverdeterminedException {
    OverdeterminationValidator odv = new OverdeterminationValidator(
        getModel());
    if (odv.isOverdetermined()) {
      throw new ModelOverdeterminedException();
    }
    return (Variable) odv.getMatching().get(this);
  }
View Full Code Here

   */
  public Variable getDerivedVariable() throws ModelOverdeterminedException {
    OverdeterminationValidator odv = new OverdeterminationValidator(
        getModel());
    if (odv.isOverdetermined()) {
      throw new ModelOverdeterminedException();
    }
    return (Variable) odv.getMatching().get(this);
  }
View Full Code Here

TOP

Related Classes of org.sbml.jsbml.validator.ModelOverdeterminedException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.