use of eu.etaxonomy.cdm.model.reference.IArticle in project cdmlib by cybertaxonomy.
the class MatchStrategyFactoryTest method getDefaultFullArticle.
/**
* Like {@link #getMatchingFullArticle() matching full article} with additional
* title, abbrevTitle and pages
*/
private IArticle getDefaultFullArticle() {
IArticle article = getMatchingFullArticle();
article.setTitle("Article title");
article.setAbbrevTitle("Art. tit.");
article.setPages("22-33");
((Reference) article).updateCaches();
return article;
}
Aggregations