nu.xom.Element.appendChild()方法的使用及代码示例

x33g5p2x  于2022-01-19 转载在 其他  
字(9.5k)|赞(0)|评价(0)|浏览(316)

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

Element.appendChild介绍

暂无

代码示例

代码示例来源:origin: stanfordnlp/CoreNLP

  1. /**
  2. * Helper method for addWordInfo(). If the value is not null,
  3. * creates an element of the given name and namespace and adds it to the
  4. * tokenElement.
  5. *
  6. * @param tokenElement This is the element to which the newly created element will be added
  7. * @param elemName This is the name for the new XML element
  8. * @param curNS The current namespace
  9. * @param value This is its value
  10. */
  11. private static void setSingleElement(Element tokenElement, String elemName, String curNS, String value) {
  12. if (value != null) {
  13. Element cur = new Element(elemName, curNS);
  14. cur.appendChild(value);
  15. tokenElement.appendChild(cur);
  16. }
  17. }

代码示例来源:origin: stanfordnlp/CoreNLP

  1. /**
  2. * Generates the XML content for a constituent tree
  3. */
  4. private static void addConstituentTreeInfo(Element treeInfo, Tree tree, TreePrint constituentTreePrinter) {
  5. StringWriter treeStrWriter = new StringWriter();
  6. constituentTreePrinter.printTree(tree, new PrintWriter(treeStrWriter, true));
  7. String temp = treeStrWriter.toString();
  8. //log.info(temp);
  9. treeInfo.appendChild(temp);
  10. }

代码示例来源:origin: stanfordnlp/CoreNLP

  1. /**
  2. * Generates the XML content for MachineReading entities.
  3. */
  4. private static void addEntities(List<EntityMention> entities, Element top, String curNS) {
  5. for (EntityMention e: entities) {
  6. Element ee = toXML(e, curNS);
  7. top.appendChild(ee);
  8. }
  9. }

代码示例来源:origin: stanfordnlp/CoreNLP

  1. /**
  2. * Generates the XML content for a list of OpenIE triples.
  3. */
  4. private static void addTriples(Collection<RelationTriple> openieTriples, Element top, String namespaceUri) {
  5. for (RelationTriple triple : openieTriples) {
  6. top.appendChild(toXML(triple, namespaceUri));
  7. }
  8. }

代码示例来源:origin: com.thoughtworks.xstream/xstream

  1. public void setValue(final String text) {
  2. top().appendChild(text);
  3. }

代码示例来源:origin: stanfordnlp/CoreNLP

  1. private static Element makeProbabilitiesElement(ExtractionObject object, String curNS) {
  2. Element probs = new Element("probabilities", curNS);
  3. if (object.getTypeProbabilities() != null){
  4. List<Pair<String, Double>> sorted = Counters.toDescendingMagnitudeSortedListWithCounts(object.getTypeProbabilities());
  5. for(Pair<String, Double> lv: sorted) {
  6. Element prob = new Element("probability", curNS);
  7. Element label = new Element("label", curNS);
  8. label.appendChild(lv.first);
  9. Element value = new Element("value", curNS);
  10. value.appendChild(lv.second.toString());
  11. prob.appendChild(label);
  12. prob.appendChild(value);
  13. probs.appendChild(prob);
  14. }
  15. }
  16. return probs;
  17. }

代码示例来源:origin: stanfordnlp/CoreNLP

  1. /**
  2. * Generates the XML content for MachineReading relations.
  3. */
  4. private static void addRelations(List<RelationMention> relations, Element top, String curNS, double beam) {
  5. for (RelationMention r: relations){
  6. if (r.printableObject(beam)) {
  7. Element re = toXML(r, curNS);
  8. top.appendChild(re);
  9. }
  10. }
  11. }

代码示例来源:origin: wiztools/rest-client

  1. static Element getAuthElement(Auth auth) {
  2. Element eAuth = new Element("auth");
  3. if(auth instanceof BasicAuth) {
  4. eAuth.appendChild(getBasicAuthElement((BasicAuth)auth));
  5. }
  6. else if(auth instanceof DigestAuth) {
  7. eAuth.appendChild(getDigestAuthElement((DigestAuth)auth));
  8. }
  9. else if(auth instanceof NtlmAuth) {
  10. eAuth.appendChild(getNtlmAuthElement((NtlmAuth)auth));
  11. }
  12. else if(auth instanceof OAuth2BearerAuth) {
  13. eAuth.appendChild(getOAuth2BearerElement((OAuth2BearerAuth)auth));
  14. }
  15. return eAuth;
  16. }

代码示例来源:origin: stanfordnlp/CoreNLP

  1. private static Element toXML(RelationMention relation, String curNS) {
  2. Element top = new Element("relation", curNS);
  3. top.addAttribute(new Attribute("id", relation.getObjectId()));
  4. Element type = new Element("type", curNS);
  5. type.appendChild(relation.getType());
  6. top.appendChild(relation.getType());
  7. if (relation.getSubType() != null){
  8. Element subtype = new Element("subtype", curNS);
  9. subtype.appendChild(relation.getSubType());
  10. top.appendChild(relation.getSubType());
  11. }
  12. List<EntityMention> mentions = relation.getEntityMentionArgs();
  13. Element args = new Element("arguments", curNS);
  14. for (EntityMention e : mentions) {
  15. args.appendChild(toXML(e, curNS));
  16. }
  17. top.appendChild(args);
  18. top.appendChild(makeProbabilitiesElement(relation, curNS));
  19. return top;
  20. }

代码示例来源:origin: wiztools/rest-client

  1. static void populateUsernamePasswordElement(Element eParent, UsernamePasswordAuth auth) {
  2. if(StringUtil.isNotEmpty(auth.getUsername())) {
  3. Element eUsername = new Element("username");
  4. eUsername.appendChild(auth.getUsername());
  5. eParent.appendChild(eUsername);
  6. }
  7. if(auth.getPassword() != null && auth.getPassword().length > 0) {
  8. Element ePassword = new Element("password");
  9. ePassword.appendChild(Util.base64encode(new String(auth.getPassword())));
  10. eParent.appendChild(ePassword);
  11. }
  12. }

代码示例来源:origin: wiztools/rest-client

  1. static Element getOAuth2BearerElement(OAuth2BearerAuth auth) {
  2. Element e = new Element("oauth2-bearer");
  3. if(StringUtil.isNotEmpty(auth.getOAuth2BearerToken())) {
  4. Element eToken = new Element("token");
  5. eToken.appendChild(auth.getOAuth2BearerToken());
  6. e.appendChild(eToken);
  7. }
  8. return e;
  9. }

代码示例来源:origin: stanfordnlp/CoreNLP

  1. private static void addDependencyInfo(Element depInfo, String rel, boolean isExtra, int source, String sourceWord, Integer sourceCopy, int target, String targetWord, Integer targetCopy, String curNS) {
  2. Element depElem = new Element("dep", curNS);
  3. depElem.addAttribute(new Attribute("type", rel));
  4. if (isExtra) {
  5. depElem.addAttribute(new Attribute("extra", "true"));
  6. }
  7. Element govElem = new Element("governor", curNS);
  8. govElem.addAttribute(new Attribute("idx", Integer.toString(source)));
  9. govElem.appendChild(sourceWord);
  10. if (sourceCopy != null && sourceCopy > 0) {
  11. govElem.addAttribute(new Attribute("copy", Integer.toString(sourceCopy)));
  12. }
  13. depElem.appendChild(govElem);
  14. Element dependElem = new Element("dependent", curNS);
  15. dependElem.addAttribute(new Attribute("idx", Integer.toString(target)));
  16. dependElem.appendChild(targetWord);
  17. if (targetCopy != null && targetCopy > 0) {
  18. dependElem.addAttribute(new Attribute("copy", Integer.toString(targetCopy)));
  19. }
  20. depElem.appendChild(dependElem);
  21. depInfo.appendChild(depElem);
  22. }

代码示例来源:origin: stanfordnlp/CoreNLP

  1. private static Element toXML(EntityMention entity, String curNS) {
  2. Element top = new Element("entity", curNS);
  3. top.addAttribute(new Attribute("id", entity.getObjectId()));
  4. Element type = new Element("type", curNS);
  5. type.appendChild(entity.getType());
  6. top.appendChild(entity.getType());
  7. if (entity.getNormalizedName() != null){
  8. Element nm = new Element("normalized", curNS);
  9. nm.appendChild(entity.getNormalizedName());
  10. top.appendChild(nm);
  11. }
  12. if (entity.getSubType() != null){
  13. Element subtype = new Element("subtype", curNS);
  14. subtype.appendChild(entity.getSubType());
  15. top.appendChild(subtype);
  16. }
  17. Element span = new Element("span", curNS);
  18. span.addAttribute(new Attribute("start", Integer.toString(entity.getHeadTokenStart())));
  19. span.addAttribute(new Attribute("end", Integer.toString(entity.getHeadTokenEnd())));
  20. top.appendChild(span);
  21. top.appendChild(makeProbabilitiesElement(entity, curNS));
  22. return top;
  23. }

代码示例来源:origin: wiztools/rest-client

  1. static Element getNtlmAuthElement(NtlmAuth auth) {
  2. Element e = new Element("ntlm");
  3. if(StringUtil.isNotEmpty(auth.getDomain())) {
  4. Element eDomain = new Element("domain");
  5. eDomain.appendChild(auth.getDomain());
  6. e.appendChild(eDomain);
  7. }
  8. if(StringUtil.isNotEmpty(auth.getWorkstation())) {
  9. Element eWorkstation = new Element("workstation");
  10. eWorkstation.appendChild(auth.getWorkstation());
  11. e.appendChild(eWorkstation);
  12. }
  13. populateUsernamePasswordElement(e, auth);
  14. return e;
  15. }

代码示例来源:origin: wiztools/rest-client

  1. protected Document request2XML(final Request bean)
  2. throws XMLException {
  3. Element reqRootElement = getRootElement();
  4. reqRootElement.appendChild(getRequestElement(bean));
  5. Document xomDocument = new Document(reqRootElement);
  6. return xomDocument;
  7. }

代码示例来源:origin: wiztools/rest-client

  1. protected Document response2XML(final Response bean)
  2. throws XMLException {
  3. Element respRootElement = getRootElement();
  4. respRootElement.appendChild(getResponseElement(bean));
  5. Document xomDocument = new Document(respRootElement);
  6. return xomDocument;
  7. }

代码示例来源:origin: stanfordnlp/CoreNLP

  1. /**
  2. * Generates the XML content for the coreference chain object.
  3. */
  4. private static boolean addCorefGraphInfo
  5. (Options options, Element corefInfo, List<CoreMap> sentences, Map<Integer, CorefChain> corefChains, String curNS) {
  6. boolean foundCoref = false;
  7. for (CorefChain chain : corefChains.values()) {
  8. if (!options.printSingletons && chain.getMentionsInTextualOrder().size() <= 1)
  9. continue;
  10. foundCoref = true;
  11. Element chainElem = new Element("coreference", curNS);
  12. CorefChain.CorefMention source = chain.getRepresentativeMention();
  13. addCorefMention(options, chainElem, curNS, sentences, source, true);
  14. for (CorefChain.CorefMention mention : chain.getMentionsInTextualOrder()) {
  15. if (mention == source)
  16. continue;
  17. addCorefMention(options, chainElem, curNS, sentences, mention, false);
  18. }
  19. corefInfo.appendChild(chainElem);
  20. }
  21. return foundCoref;
  22. }

代码示例来源:origin: com.thoughtworks.xstream/xstream

  1. protected Object createNode(final String name) {
  2. final Element newNode = new Element(encodeNode(name));
  3. final Element top = top();
  4. if (top != null){
  5. top().appendChild(newNode);
  6. }
  7. return newNode;
  8. }

代码示例来源:origin: stanfordnlp/CoreNLP

  1. chainElem.appendChild(mentionElem);

代码示例来源:origin: wiztools/rest-client

  1. public static void writeRequestCollectionXML(final List<Request> requests, final File f)
  2. throws IOException, XMLException {
  3. XmlPersistenceWrite xUtl = new XmlPersistenceWrite();
  4. Element eRoot = new Element("request-collection");
  5. eRoot.addAttribute(new Attribute("version", Versions.CURRENT));
  6. for(Request req: requests) {
  7. Element e = xUtl.getRequestElement(req);
  8. eRoot.appendChild(e);
  9. }
  10. Document doc = new Document(eRoot);
  11. xUtl.writeXML(doc, f);
  12. }

相关文章