gpt4 book ai didi

net.ontopia.topicmaps.xml.XTMTopicMapWriter.setAddIds()方法的使用及代码示例

转载 作者:知者 更新时间:2024-03-19 04:00:40 26 4
gpt4 key购买 nike

本文整理了Java中net.ontopia.topicmaps.xml.XTMTopicMapWriter.setAddIds()方法的一些代码示例,展示了XTMTopicMapWriter.setAddIds()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。XTMTopicMapWriter.setAddIds()方法的具体详情如下:
包路径:net.ontopia.topicmaps.xml.XTMTopicMapWriter
类名称:XTMTopicMapWriter
方法名:setAddIds

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();
}

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com