Examples of NameFilter


Examples of org.sbml.jsbml.util.filters.NameFilter

   *
   * @param id
   * @return the removed element.
   */
  public Parameter removeParameter(String id) {
    return getListOfParameters().removeFirst(new NameFilter(id));
  }
View Full Code Here

Examples of org.sbml.jsbml.util.filters.NameFilter

   *
   * @param id
   * @return the removed element.
   */
  public Reaction removeReaction(String id) {
    return getListOfReactions().removeFirst(new NameFilter(id));
  }
View Full Code Here

Examples of org.sbml.jsbml.util.filters.NameFilter

   *
   * @param id
   * @return the removed element.
   */
  public Species removeSpecies(String id) {
    return getListOfSpecies().removeFirst(new NameFilter(id));
  }
View Full Code Here

Examples of org.sbml.jsbml.util.filters.NameFilter

   * @param id
   * @return the removed element.
   */
  @Deprecated
  public SpeciesType removeSpeciesType(String id) {
    return getListOfSpeciesTypes().removeFirst(new NameFilter(id));
  }
View Full Code Here

Examples of org.sbml.jsbml.util.filters.NameFilter

   *
   * @param id
   * @return the removed element.
   */
  public UnitDefinition removeUnitDefinition(String id) {
    return getListOfUnitDefinitions().removeFirst(new NameFilter(id));
  }
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.