Package org.sbml.jsbml

Examples of org.sbml.jsbml.SimpleSpeciesReference


  public boolean accepts(Object o) {
    if (!filterForSpecies) {
      return super.accepts(o);
    }
    if (o instanceof SimpleSpeciesReference) {
      SimpleSpeciesReference specRef = (SimpleSpeciesReference) o;
      if (specRef.isSetSpecies() && (id != null)
          && specRef.getSpecies().equals(id)) {
        return true;
      }
    }
    return false;
  }
View Full Code Here


  public boolean accepts(Object o) {
    if (!filterForSpecies) {
      return super.accepts(o);
    }
    if (o instanceof SimpleSpeciesReference) {
      SimpleSpeciesReference specRef = (SimpleSpeciesReference) o;
      if (specRef.isSetSpecies() && (id != null)
          && specRef.getSpecies().equals(id)) {
        return true;
      }
    }
    return false;
  }
View Full Code Here

  public boolean accepts(Object o) {
    if (!filterForSpecies) {
      return super.accepts(o);
    }
    if (o instanceof SimpleSpeciesReference) {
      SimpleSpeciesReference specRef = (SimpleSpeciesReference) o;
      if (specRef.isSetSpecies() && (id != null)
          && specRef.getSpecies().equals(id)) {
        return true;
      }
    }
    return false;
  }
View Full Code Here

TOP

Related Classes of org.sbml.jsbml.SimpleSpeciesReference

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.