- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中net.ontopia.topicmaps.xml.XTMTopicMapWriter.setAddIds()
方法的一些代码示例,展示了XTMTopicMapWriter.setAddIds()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。XTMTopicMapWriter.setAddIds()
方法的具体详情如下:
包路径:net.ontopia.topicmaps.xml.XTMTopicMapWriter
类名称:XTMTopicMapWriter
方法名:setAddIds
[英]PUBLIC: Tells the exporter whether or not to add IDs to all elements. (Default: false.)
[中]PUBLIC:告诉导出程序是否向所有元素添加ID。(默认值:false。)
代码示例来源:origin: ontopia/ontopia
Object value = properties.get(PROPERTY_ADD_IDS);
if ((value != null) && (value instanceof Boolean)) {
setAddIds((Boolean) value);
代码示例来源:origin: ontopia/ontopia
protected void export() throws IOException {
XTMTopicMapWriter writer = new XTMTopicMapWriter(tmfile);
writer.setVersion(version);
writer.setAddIds(true);
writer.write(topicmap);
}
代码示例来源:origin: ontopia/ontopia
@Test
public void testOmittingIDs() throws IOException {
prepareTopicMap();
TopicIF topic = builder.makeTopic();
TopicIF otype = builder.makeTopic();
OccurrenceIF occ = builder.makeOccurrence(topic, otype, "huhei");
XTMTopicMapWriter writer = new XTMTopicMapWriter(tmfile);
writer.setAddIds(false);
writer.write(topicmap);
XTMTopicMapReader reader = new XTMTopicMapReader(tmfile);
topicmap = reader.read();
Iterator it = topicmap.getTopics().iterator();
while (it.hasNext()) {
topic = (TopicIF) it.next();
if (!topic.getOccurrences().isEmpty())
break;
}
occ = (OccurrenceIF) topic.getOccurrences().iterator().next();
Assert.assertTrue("occurrence had ID!", occ.getItemIdentifiers().isEmpty());
}
代码示例来源:origin: ontopia/ontopia
@Test
public void testOmittingIDs2() throws IOException {
prepareTopicMap();
TopicIF topic = builder.makeTopic();
TopicIF otype = builder.makeTopic();
OccurrenceIF occ = builder.makeOccurrence(topic, otype, "huhei");
TopicIF topic2 = builder.makeTopic();
occ.setReifier(topic2);
XTMTopicMapWriter writer = new XTMTopicMapWriter(tmfile);
writer.setAddIds(false);
writer.write(topicmap);
XTMTopicMapReader reader = new XTMTopicMapReader(tmfile);
topicmap = reader.read();
Iterator it = topicmap.getTopics().iterator();
while (it.hasNext()) {
topic = (TopicIF) it.next();
if (!topic.getOccurrences().isEmpty())
break;
}
occ = (OccurrenceIF) topic.getOccurrences().iterator().next();
topic2 = occ.getReifier();
Assert.assertTrue("reification relationship was lost on export and reimport",
topic2 != null);
}
代码示例来源:origin: ontopia/ontopia
@Test
public void testExportItemIdentifiers() throws IOException, SAXException {
prepareTopicMap();
TopicIF topic = builder.makeTopic();
LocatorIF iid = tmbase.resolveAbsolute("#id4314");
topic.addItemIdentifier(iid);
// export to file (not using export() because we need to control settings)
XTMTopicMapWriter writer = new XTMTopicMapWriter(tmfile);
writer.setVersion(version);
writer.setAddIds(true);
writer.setExportSourceLocators(false);
writer.write(topicmap);
// reread file with SAX
SearchAttributeValue handler =
new SearchAttributeValue("itemIdentity", "href", iid.getAddress(),
SearchAttributeValue.FORBIDDEN, false);
parseFile(handler);
handler.check();
}
本文整理了Java中net.ontopia.topicmaps.xml.XTMTopicMapWriter.setFilter()方法的一些代码示例,展示了XTMTopicMapWriter.setF
本文整理了Java中net.ontopia.topicmaps.xml.XTMTopicMapWriter.()方法的一些代码示例,展示了XTMTopicMapWriter.()的具体用法。这些代码示
本文整理了Java中net.ontopia.topicmaps.xml.XTMTopicMapWriter.write()方法的一些代码示例,展示了XTMTopicMapWriter.write()的
本文整理了Java中net.ontopia.topicmaps.xml.XTMTopicMapWriter.setAddIds()方法的一些代码示例,展示了XTMTopicMapWriter.setA
本文整理了Java中net.ontopia.topicmaps.xml.XTMTopicMapWriter.setVersion()方法的一些代码示例,展示了XTMTopicMapWriter.set
本文整理了Java中net.ontopia.topicmaps.xml.XTMTopicMapWriter.setExportSourceLocators()方法的一些代码示例,展示了XTMTopic
我是一名优秀的程序员,十分优秀!