Examples of InBookCitation


Examples of org.cipres.treebase.domain.study.InBookCitation

   * Default constructor Creation date: May 17, 2006 2:11:05 PM
   */
  public CitationCommand() {
    citationMap.put(BookCitation.CITATION_TYPE_BOOK, new BookCitation());
    citationMap.put(ArticleCitation.CITATION_TYPE_ARTICLE, new ArticleCitation());
    citationMap.put(InBookCitation.CITATION_TYPE_BOOKSECTION, new InBookCitation());
  }
View Full Code Here

Examples of org.cipres.treebase.domain.study.InBookCitation

    if (BookCitation.CITATION_TYPE_BOOK.compareToIgnoreCase(pCitationType) == 0) {
      return new BookCitation();
    } else if (ArticleCitation.CITATION_TYPE_ARTICLE.compareToIgnoreCase(pCitationType) == 0){
      return new ArticleCitation();
    } else if (InBookCitation.CITATION_TYPE_BOOKSECTION.compareToIgnoreCase(pCitationType) == 0) {
      return new InBookCitation();
    }
   
    //default:
    return new ArticleCitation();
  }
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.