Package org.sbml.jsbml

Examples of org.sbml.jsbml.PropertyUndefinedError


  public boolean isAbsoluteFx() {
    if (isSetAbsoluteFx()) {
      return absoluteFx;
    }
    // This is necessary if we cannot return null here.
    throw new PropertyUndefinedError(RenderConstants.absoluteFx, this);
  }
View Full Code Here


  public boolean isAbsoluteFy() {
    if (isSetAbsoluteFy()) {
      return absoluteFy;
    }
    // This is necessary if we cannot return null here.
    throw new PropertyUndefinedError(RenderConstants.absoluteFy, this);
  }
View Full Code Here

   */
  public Sign getSign() {
    if (isSetSign()) {
      return sign;
    } else {
      throw new PropertyUndefinedError(QualConstants.sign, this);
    }
  }
View Full Code Here

  public boolean isAbsoluteFz() {
    if (isSetAbsoluteFz()) {
      return absoluteFz;
    }
    // This is necessary if we cannot return null here.
    throw new PropertyUndefinedError(RenderConstants.absoluteFz, this);
  }
View Full Code Here

   */
  public String getQualitativeSpecies() {
    if (isSetQualitativeSpecies()) {
      return qualitativeSpecies;
    } else {
      throw new PropertyUndefinedError(QualConstants.qualitativeSpecies, this);
    }
  }
View Full Code Here

  public boolean isAbsoluteR() {
    if (isSetAbsoluteR()) {
      return absoluteR;
    }
    // This is necessary if we cannot return null here.
    throw new PropertyUndefinedError(RenderConstants.absoluteR, this);
  }
View Full Code Here

   */
  public InputTransitionEffect getTransitionEffect() {
    if (isSetTransitionEffect()) {
      return transitionEffect;
    } else {
      throw new PropertyUndefinedError(QualConstants.transitionEffect, this);
    }
  }
View Full Code Here

  public boolean getIsLocal() {
    if (isSetIsLocal()) {
      return isLocal;
    }
    // This is necessary if we cannot return null here.
    throw new PropertyUndefinedError(SpatialConstants.isLocal, this);
  }
View Full Code Here

   */
  public int getThresholdLevel() {
    if (isSetThresholdLevel()) {
      return thresholdLevel.intValue();
    }
    throw new PropertyUndefinedError(QualConstants.thresholdLevel, this);
  }
View Full Code Here

  public Color getValue() {
    if (isSetValue()) {
      return value;
    }
    // This is necessary if we cannot return null here.
    throw new PropertyUndefinedError(RenderConstants.value, this);
  }
View Full Code Here

TOP

Related Classes of org.sbml.jsbml.PropertyUndefinedError

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.