Package org.sbml.jsbml

Examples of org.sbml.jsbml.PropertyUndefinedError


  public double getCoord1() {
    if (isSetCoord1()) {
      return coord1;
    }
    //TODO: This is necessary if we cannot return null here.
    throw new PropertyUndefinedError(SpatialConstants.coord1, this);
  }
View Full Code Here


  public double getCoord2() {
    if (isSetCoord2()) {
      return coord2;
    }
    //TODO: This is necessary if we cannot return null here.
    throw new PropertyUndefinedError(SpatialConstants.coord2, this);
  }
View Full Code Here

  public double getCoord3() {
    if (isSetCoord3()) {
      return coord3;
    }
    // TODO:This is necessary if we cannot return null here.
    throw new PropertyUndefinedError(SpatialConstants.coord3, this);
  }
View Full Code Here

  public String getDomain() {
    if (isSetDomain()) {
      return domain;
    }
    // TODO: This is necessary if we cannot return null here.
    throw new PropertyUndefinedError(SpatialConstants.domain, this);
  }
View Full Code Here

    if (isSetModelRef()) {
      return modelRef;
    }
    // This is necessary if we cannot return null here.
    throw new PropertyUndefinedError(CompConstants.modelRef, this);
  }
View Full Code Here

    if (isSetTimeConversionFactor()) {
      return timeConversionFactor;
    }
    // This is necessary if we cannot return null here.
    throw new PropertyUndefinedError(CompConstants.timeConversionFactor, this);
  }
View Full Code Here

    if (isSetExtentConversionFactor()) {
      return extentConversionFactor;
    }
    // This is necessary if we cannot return null here.
    throw new PropertyUndefinedError(CompConstants.extentConversionFactor, this);
  }
View Full Code Here

    if (isSetMembersShareType()) {
      return membersShareType;
    }
    // This is necessary if we cannot return null here.
    throw new PropertyUndefinedError(GroupsConstants.membersShareType, this);
  }
View Full Code Here

  public Integer[] getSamples() {
    if (isSetSamples()) {
      return samples;
    }
    // This is necessary if we cannot return null here.
    throw new PropertyUndefinedError(SpatialConstants.samples, this);
  }
View Full Code Here

  public int getSamplesLength() {
    if (isSetSamplesLength()) {
      return samplesLength;
    }
    // This is necessary if we cannot return null here.
    throw new PropertyUndefinedError(SpatialConstants.samplesLength, 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.