Esempio n. 1
0
  /** The function returns a Collection of OBOTerm */
  public Collection<OBOTerm> getConcepts() {
    if (terms != null) {
      return terms.getAllMembers();
    }

    return null;
  }
Esempio n. 2
0
 public String toString() {
   String temp =
       "Terms= \n"
           + terms.toString()
           + "\n"
           + "Relations=\n"
           + relations
           + "\n"
           + "Instances=\n"
           + instances
           + "\n"
           + "sourceAbbreviations=\n"
           + sourceAbbreviations;
   return temp;
 }