本文整理了Java中pl.edu.icm.model.bwmeta.y.YClassification.getDefaultName()
方法的一些代码示例,展示了YClassification.getDefaultName()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。YClassification.getDefaultName()
方法的具体详情如下:
包路径:pl.edu.icm.model.bwmeta.y.YClassification
类名称:YClassification
方法名:getDefaultName
暂无
代码示例来源:origin: pl.edu.icm.yadda.repowebeditor/repository-web-editor-core
public String resolveName(Locale inLocale, YClassification classification){
YLanguage yLanguage = languagesInfoFactory.getLocaleLanguage(inLocale, YLanguage.Undetermined);
String nameText = findNameInLanguage(classification.getNames(), yLanguage);
if(StringUtils.isBlank(nameText)){
return getNameTextFrom(classification.getDefaultName(), classification.getId());
} else {
return nameText;
}
}
代码示例来源:origin: pl.edu.icm.yadda/yaddaweb-lite-core
YClassification c = categoryService
.fetchYClassification(cl);
Classification cClas = new Classification(c.getDefaultName()
.getText());
List<Category> lc = new ArrayList<Category>();
内容来源于网络,如有侵权,请联系作者删除!