本文整理汇总了Java中org.openrdf.model.vocabulary.SKOS.PREF_LABEL属性的典型用法代码示例。如果您正苦于以下问题:Java SKOS.PREF_LABEL属性的具体用法?Java SKOS.PREF_LABEL怎么用?Java SKOS.PREF_LABEL使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类org.openrdf.model.vocabulary.SKOS
的用法示例。
在下文中一共展示了SKOS.PREF_LABEL属性的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: setLabels
private void setLabels(URI concept1uri, URI concept2uri, int delay) throws RepositoryException, InterruptedException {
Statement defPrefLabel = new StatementImpl(concept1uri, SKOS.PREF_LABEL, new LiteralImpl("concept"));
Statement updatePrefLabel = new StatementImpl(concept2uri, SKOS.PREF_LABEL, new LiteralImpl("updated concept"));
persistAndNotifyProvider.persistAndNotify(
Helper.createChangeSetModel(defPrefLabel, ChangeTripleService.CHANGETYPE_ADD),
true);
persistAndNotifyProvider.persistAndNotify(
Helper.createChangeSetModel(defPrefLabel, ChangeTripleService.CHANGETYPE_REMOVE),
true);
Thread.sleep(delay);
persistAndNotifyProvider.persistAndNotify(
Helper.createChangeSetModel(updatePrefLabel, ChangeTripleService.CHANGETYPE_ADD),
true);
}
示例2: addConcepts
private void addConcepts() throws RepositoryException {
mainConceptUri = new URIImpl("http://reegle.info/glossary/440");
abandonedConceptUri = new URIImpl("http://reegle.info/glossary/442");
abandonedConceptPrefLabel = new LiteralImpl("combi storage tanks", "en");
Statement mainConcept = new StatementImpl(mainConceptUri, RDF.TYPE, SKOS.CONCEPT);
Statement abandonedConcept = new StatementImpl(abandonedConceptUri, RDF.TYPE, SKOS.CONCEPT);
Statement abandonedConceptLabel = new StatementImpl(abandonedConceptUri, SKOS.PREF_LABEL, abandonedConceptPrefLabel);
repCon.add(mainConcept);
repCon.add(abandonedConcept);
repCon.add(abandonedConceptLabel);
}