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

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

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

Element.addAttribute介绍

暂无

代码示例

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

  1. private Element getRootElement() {
  2. Element eRoot = new Element("rest-client");
  3. // set version attributes to rest-client root tag
  4. eRoot.addAttribute(new Attribute("version", Versions.CURRENT));
  5. return eRoot;
  6. }

代码示例来源: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: wiztools/rest-client

  1. private static void addContentTypeCharsetAttribute(ContentType c, Element e) {
  2. if(c != null) {
  3. e.addAttribute(new Attribute("content-type", c.getContentType()));
  4. if(c.getCharset() != null) {
  5. e.addAttribute(new Attribute("charset", c.getCharset().name()));
  6. }
  7. }
  8. }
  9. }

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

  1. public void addAttribute(final String name, final String value) {
  2. top().addAttribute(new Attribute(encodeAttribute(name), value));
  3. }

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

  1. Element mentionElem = new Element("mention", curNS);
  2. if (representative) {
  3. mentionElem.addAttribute(new Attribute("representative", "true"));

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

  1. private static Element toXML(RelationTriple triple, String curNS) {
  2. Element top = new Element("triple", curNS);
  3. top.addAttribute(new Attribute("confidence", triple.confidenceGloss()));
  4. subject.addAttribute(new Attribute("begin", Integer.toString(triple.subjectTokenSpan().first)));
  5. subject.addAttribute(new Attribute("end", Integer.toString(triple.subjectTokenSpan().second)));
  6. Element text = new Element("text", curNS);
  7. text.appendChild(triple.subjectGloss());
  8. relation.addAttribute(new Attribute("begin", Integer.toString(triple.relationTokenSpan().first)));
  9. relation.addAttribute(new Attribute("end", Integer.toString(triple.relationTokenSpan().second)));
  10. text = new Element("text", curNS);
  11. text.appendChild(triple.relationGloss());
  12. object.addAttribute(new Attribute("begin", Integer.toString(triple.objectTokenSpan().first)));
  13. object.addAttribute(new Attribute("end", Integer.toString(triple.objectTokenSpan().second)));
  14. text = new Element("text", curNS);
  15. text.appendChild(triple.objectGloss());

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

  1. e.addAttribute(new Attribute("type", req.getKeyStore().getType().name()));
  2. e.addAttribute(new Attribute("file", req.getKeyStore().getFile().getAbsolutePath()));
  3. e.addAttribute(new Attribute("password", Util.base64encode(new String(req.getKeyStore().getPassword()))));
  4. eSsl.appendChild(e);
  5. e.addAttribute(new Attribute("type", req.getTrustStore().getType().name()));
  6. e.addAttribute(new Attribute("file", req.getTrustStore().getFile().getAbsolutePath()));
  7. e.addAttribute(new Attribute("password", Util.base64encode(new String(req.getTrustStore().getPassword()))));
  8. eSsl.appendChild(e);

代码示例来源: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. }

代码示例来源: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: stanfordnlp/CoreNLP

  1. private static Element buildDependencyTreeInfo(String dependencyType, SemanticGraph graph, List<CoreLabel> tokens, String curNS) {
  2. if(graph != null) {
  3. Element depInfo = new Element("dependencies", curNS);
  4. depInfo.addAttribute(new Attribute("type", dependencyType));

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

  1. private static void addWordInfo(Element wordInfo, CoreMap token, int id, String curNS) {
  2. wordInfo.addAttribute(new Attribute("id", Integer.toString(id)));
  3. Timex timex = token.get(TimeAnnotations.TimexAnnotation.class);
  4. Element timexElem = new Element("Timex", curNS);
  5. timexElem.addAttribute(new Attribute("tid", timex.tid()));
  6. timexElem.addAttribute(new Attribute("type", timex.timexType()));
  7. timexElem.appendChild(timex.value());
  8. wordInfo.appendChild(timexElem);

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

  1. for(String value: headers.get(key)) {
  2. Element ee = new Element("header");
  3. ee.addAttribute(new Attribute("key", key));
  4. ee.addAttribute(new Attribute("value", value));
  5. e.appendChild(ee);
  6. ee.addAttribute(new Attribute("name", cookie.getName()));
  7. ee.addAttribute(new Attribute("value", cookie.getValue()));
  8. ee.addAttribute(new Attribute("version", String.valueOf(cookie.getVersion())));
  9. e.appendChild(ee);

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

  1. eMultipart.addAttribute(
  2. new Attribute("subtype", entity.getSubtype().name()));
  3. eMultipart.addAttribute(
  4. new Attribute("mode", entity.getMode().name()));
  5. ePart.addAttribute(new Attribute("name", p.getName()));
  6. ePart.addAttribute(new Attribute("name", p.getName()));
  7. ePart.addAttribute(new Attribute("filename", p.getFilename()));
  8. ePart.addAttribute(new Attribute("filename", p.getPart().getName()));

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

  1. for (CoreMap sentence: annotation.get(CoreAnnotations.SentencesAnnotation.class)) {
  2. Element sentElem = new Element("sentence", NAMESPACE_URI);
  3. sentElem.addAttribute(new Attribute("id", Integer.toString(sentCount)));
  4. Integer lineNumber = sentence.get(CoreAnnotations.LineNumberAnnotation.class);
  5. if (lineNumber != null) {
  6. sentElem.addAttribute(new Attribute("line", Integer.toString(lineNumber)));
  7. if (sentimentTree != null) {
  8. int sentiment = RNNCoreAnnotations.getPredictedClass(sentimentTree);
  9. sentElem.addAttribute(new Attribute("sentimentValue", Integer.toString(sentiment)));
  10. String sentimentClass = sentence.get(SentimentCoreAnnotations.SentimentClass.class);
  11. sentElem.addAttribute(new Attribute("sentiment", sentimentClass.replaceAll(" ", "")));

代码示例来源: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. respChildSubElement.addAttribute(codeAttributes);
  2. respChildSubElement.appendChild(bean.getStatusLine());
  3. respElement.appendChild(respChildSubElement);
  4. keyAttribute = new Attribute("key", key);
  5. valueAttribute = new Attribute("value", value);
  6. respChildSubSubElement.addAttribute(keyAttribute);
  7. respChildSubSubElement.addAttribute(valueAttribute);
  8. respChildSubElement.appendChild(respChildSubSubElement);

代码示例来源:origin: resteasy/Resteasy

  1. public static byte[] createPermissionsXml(Permission... permissions) {
  2. final Element permissionsElement = new Element("permissions");
  3. permissionsElement.setNamespaceURI("http://xmlns.jcp.org/xml/ns/javaee");
  4. permissionsElement.addAttribute(new Attribute("version", "7"));
  5. for (Permission permission : permissions) {
  6. final Element permissionElement = new Element("permission");

代码示例来源:origin: org.concordion/concordion

  1. public void moveAttributesTo(Element element) {
  2. for (int i=0; i<xomElement.getAttributeCount(); i++) {
  3. Attribute attribute = xomElement.getAttribute(i);
  4. xomElement.removeAttribute(attribute);
  5. element.xomElement.addAttribute(attribute);
  6. }
  7. }

代码示例来源:origin: org.concordion/concordion

  1. public void beforeProcessingSpecification(SpecificationProcessingEvent event) {
  2. Resource resource = event.getResource();
  3. //work around with setValue() necessary for Concordion.NET
  4. Attribute hrefAttribute = new Attribute("href", "");
  5. hrefAttribute.setValue(resource.getRelativePath(stylesheetResource));
  6. link.addAttribute(hrefAttribute);
  7. }

代码示例来源:origin: org.concordion/concordion

  1. public void beforeProcessingSpecification(SpecificationProcessingEvent event) {
  2. Resource resource = event.getResource();
  3. //work around with setValue() necessary for Concordion.NET
  4. Attribute srcAttribute = new Attribute("src", "");
  5. srcAttribute.setValue(resource.getRelativePath(javaScriptResource));
  6. script.addAttribute(srcAttribute);
  7. }

相关文章