Examples of findTaxonVariantByFullName()


Examples of org.cipres.treebase.domain.taxon.TaxonLabelService.findTaxonVariantByFullName()

        }
        break;
      case TAXONVARIANT :
        LOGGER.debug("Will search taxon variants");
        Collection<TaxonVariant> variantsFound = exactMatch
          ? tls.findTaxonVariantByFullName(pattern)
          : tls.findTaxonVariantWithSubstring(pattern, caseSensitive);
        for ( TaxonVariant variant : variantsFound ) {
          if ( variant.getTaxon() != null ) {
            taxaFound.add(variant.getTaxon());
          }
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.