All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.biojava.ontology.Variable Maven / Gradle / Ivy

There is a newer version: 1.9.7
Show newest version
package org.biojava.ontology;

/**
 *
 *
 * @author Matthew Pocock
 */
public interface Variable
extends Term {
  public static class Impl
          extends Term.Impl
          implements Variable
 {
    public Impl(Ontology ontology, String name, String description) {
      super(ontology, name, description);
    }
    public Impl(Ontology ontology, String name, String description, Object[] synonyms) {
      super(ontology, name, description, synonyms);
    }
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy