Examples of OverdeterminationValidator


Examples of org.sbml.jsbml.validator.OverdeterminationValidator

   *             already part of a {@link Model}. If you just created a
   *             {@link Rule} and didn't add it to a {@link Model} you'll
   *             receive a {@link NullPointerException}.
   */
  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

Examples of org.sbml.jsbml.validator.OverdeterminationValidator

   *             already part of a {@link Model}. If you just created a
   *             {@link Rule} and didn't add it to a {@link Model} you'll
   *             receive a {@link NullPointerException}.
   */
  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

Examples of org.sbml.jsbml.validator.OverdeterminationValidator

   *             already part of a {@link Model}. If you just created a
   *             {@link Rule} and didn't add it to a {@link Model} you'll
   *             receive a {@link NullPointerException}.
   */
  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
Copyright © 2018 www.massapi.com. 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.