* @param pCitationType
* @return
*/
public Citation afactory(String pCitationType) {
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();
}