nu.xom.Element类的使用及代码示例

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

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

Element介绍

暂无

代码示例

代码示例来源: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 void addFields(Elements eFields, ReqEntityBasePart part) {
  2. if(eFields == null) {
  3. return;
  4. }
  5. for(int i=0; i<eFields.size(); i++) {
  6. Element eField = eFields.get(i);
  7. String name = eField.getChildElements("name").get(0).getValue();
  8. String value = eField.getChildElements("value").get(0).getValue();
  9. part.addField(name, value);
  10. }
  11. }

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

  1. public String getAttribute(int index) {
  2. return currentElement.getAttribute(index).getValue();
  3. }

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

  1. public void beforeParsing(Document document) {
  2. Element html = document.getRootElement();
  3. Element head = html.getFirstChildElement("head");
  4. Check.notNull(head, "<head> section is missing from document");
  5. Element script = new Element("script");
  6. script.addAttribute(new Attribute("type", "text/javascript") );
  7. script.appendChild(javaScript);
  8. head.insertChild(script, 0);
  9. }
  10. }

代码示例来源:origin: net.stickycode.plugins/bounds-maven-plugin

  1. void updateProperty(Document pom, String propertyName, String newVersion) throws MojoExecutionException {
  2. XPathContext context = new XPathContext("mvn", "http://maven.apache.org/POM/4.0.0");
  3. Nodes nodes = pom.query("//mvn:properties", context);
  4. if (nodes.size() > 0) {
  5. final Element propertiesElement = (Element) nodes.get(0);
  6. Elements properties = propertiesElement.getChildElements();
  7. for (int i = 0; i < properties.size(); i++) {
  8. Element property = properties.get(i);
  9. if (property.getLocalName().equals(propertyName)) {
  10. Element newRange = new Element(propertyName, "http://maven.apache.org/POM/4.0.0");
  11. newRange.appendChild(newVersion);
  12. propertiesElement.replaceChild(property, newRange);
  13. }
  14. }
  15. }
  16. }

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

  1. if (!"rest-client".equals(rootNode.getQualifiedName())) {
  2. throw new XMLException("Root node is not <rest-client>");
  3. Versions.versionValidCheck(rootNode.getAttributeValue("version"));
  4. if (rootNode.getChildElements().size() != 1) {
  5. throw new XMLException("There can be only one child node for root node: <response>");
  6. if (rootNode.getFirstChildElement("response") == null) {
  7. throw new XMLException("The child node of <rest-client> should be <response>");
  8. responseNode = rootNode.getFirstChildElement("response");
  9. for (int i = 0; i < responseNode.getChildElements().size(); i++) {
  10. tNode = responseNode.getChildElements().get(i);
  11. String nodeName = tNode.getQualifiedName();
  12. responseBean.setExecutionTime(Long.parseLong(tNode.getValue()));
  13. } else if ("status".equals(nodeName)) {
  14. responseBean.setStatusLine(tNode.getValue());
  15. responseBean.setStatusCode(Integer.parseInt(tNode.getAttributeValue("code")));
  16. } else if ("headers".equals(nodeName)) {
  17. Map<String, String> m = getHeadersFromHeaderNode(tNode);
  18. final String base64body = tNode.getValue();
  19. responseBean.setResponseBody(Util.base64decodeByteArray(base64body));
  20. } else if ("test-result".equals(nodeName)) {
  21. TestResultBean testResultBean = new TestResultBean();
  22. for (int j = 0; j < tNode.getChildCount(); j++) {

代码示例来源:origin: wiztools/xsd-gen

  1. private void processAttributes(final Element inElement, final Element outElement) {
  2. for (int i = 0; i < inElement.getAttributeCount(); i++) {
  3. final Attribute attr = inElement.getAttribute(i);
  4. final String name = attr.getLocalName();
  5. final String value = attr.getValue();
  6. Element attrElement = new Element(xsdPrefix + ":attribute", XSD_NS_URI);
  7. attrElement.addAttribute(new Attribute("name", name));
  8. attrElement.addAttribute(new Attribute("type", xsdPrefix + TypeInferenceUtil.getTypeOfContent(value)));
  9. attrElement.addAttribute(new Attribute("use", "required"));
  10. outElement.appendChild(attrElement);
  11. }
  12. }

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

  1. Builder parser = new Builder();
  2. StringReader in = new StringReader(xml);
  3. docElem = parser.build(in).getRootElement();
  4. } catch (ParsingException | IOException e) {
  5. throw new RuntimeException(String.format("error:\n%s\ninput:\n%s", e, xml));
  6. Element textElem = docElem.getFirstChildElement("TEXT");
  7. StringBuilder text = new StringBuilder();
  8. int offset = 0;
  9. List<CoreMap> sentences = new ArrayList<>();
  10. Elements sentenceElements = textElem.getChildElements("SENT");
  11. for (int crtsent = 0; crtsent < sentenceElements.size(); crtsent ++){
  12. Element sentElem = sentenceElements.get(crtsent);
  13. CoreMap sentence = new ArrayCoreMap();
  14. sentence.set(CoreAnnotations.CharacterOffsetBeginAnnotation.class, offset);
  15. Tree tree = Tree.valueOf(sentElem.getChild(0).getValue()); // XXX ms: is this the same as sentElem.getText() in JDOM?
  16. List<CoreLabel> tokens = new ArrayList<>();
  17. List<Tree> preTerminals = preTerminals(tree);
  18. String docID = docElem.getAttributeValue("id");
  19. Matcher matcher = datePattern.matcher(docID);
  20. matcher.find();

代码示例来源:origin: org.teiid/saxon-xom

  1. /** Wraps each item in the result sequence into a decorated element wrapper. */
  2. private static Document wrapSequence(Nodes nodes) {
  3. // make a copy of the template for sequences:
  4. Element items = (Element) TEMPLATES.get(Nodes.class.getName());
  5. items = new Element(items);
  6. int size = nodes.size();
  7. for (int i=0; i < size; i++) {
  8. items.appendChild(wrap(nodes.get(i)));
  9. }
  10. return new Document(items);
  11. }

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

  1. private boolean hasContentTypeMetadata(Element head) {
  2. Elements metaChildren = head.getChildElements("meta");
  3. for (int i=0; i < metaChildren.size(); i++) {
  4. Element metaChild = metaChildren.get(i);
  5. Attribute httpEquiv = metaChild.getAttribute("http-equiv");
  6. if (httpEquiv != null && "content-type".equalsIgnoreCase(httpEquiv.getValue())) {
  7. return true;
  8. }
  9. }
  10. return false;
  11. }
  12. }

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

  1. protected Request xml2Request(final Document doc)
  2. throws MalformedURLException, XMLException {
  3. // get the rootNode
  4. Element rootNode = doc.getRootElement();
  5. if (!"rest-client".equals(rootNode.getQualifiedName())) {
  6. throw new XMLException("Root node is not <rest-client>");
  7. }
  8. // checking correct rest version
  9. final String rcVersion = rootNode.getAttributeValue("version");
  10. try {
  11. Versions.versionValidCheck(rcVersion);
  12. }
  13. catch(Versions.VersionValidationException ex) {
  14. throw new XMLException(ex);
  15. }
  16. readVersion = rcVersion;
  17. // if more than two request element is present then throw the exception
  18. if (rootNode.getChildElements().size() != 1) {
  19. throw new XMLException("There can be only one child node for root node: <request>");
  20. }
  21. // minimum one request element is present in xml
  22. if (rootNode.getFirstChildElement("request") == null) {
  23. throw new XMLException("The child node of <rest-client> should be <request>");
  24. }
  25. Element requestNode = rootNode.getFirstChildElement("request");
  26. return getRequestBean(requestNode);
  27. }

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

  1. private Map<String, String> getHeadersFromHeaderNode(final Element node)
  2. throws XMLException {
  3. Map<String, String> m = new LinkedHashMap<>();
  4. for (int i = 0; i < node.getChildElements().size(); i++) {
  5. Element headerElement = node.getChildElements().get(i);
  6. if (!"header".equals(headerElement.getQualifiedName())) {
  7. throw new XMLException("<headers> element should contain only <header> elements");
  8. }
  9. m.put(headerElement.getAttributeValue("key"),
  10. headerElement.getAttributeValue("value"));
  11. }
  12. return m;
  13. }

代码示例来源:origin: net.stickycode.plugins/bounds-maven-plugin

  1. void bumpMajorVersion(Document pom) throws MojoExecutionException {
  2. XPathContext context = new XPathContext("mvn", "http://maven.apache.org/POM/4.0.0");
  3. Nodes project = pom.query("/mvn:project", context);
  4. if (project.size() == 0)
  5. throw new MojoExecutionException("Pom is broken");
  6. Nodes nodes = pom.query("/mvn:project/mvn:version", context);
  7. if (nodes.size() != 1)
  8. throw new MojoExecutionException("Version is not declared correctly");
  9. Element e = (Element) nodes.get(0);
  10. String[] components = e.getValue().split("\\.");
  11. components[0] = Integer.toString(Integer.valueOf(components[0]) + 1);
  12. String bumpedVersion = String.join(".", components);
  13. Element newVersion = new Element("version", "http://maven.apache.org/POM/4.0.0");
  14. newVersion.appendChild(bumpedVersion);
  15. ((Element) project.get(0)).replaceChild(e, newVersion);
  16. // TODO check that the next version does not already exist
  17. }

代码示例来源:origin: se.vgregion.pubsubhubbub/pubsubhubbub-hub-composite-pubsub

  1. public DefaultField(Element elm) {
  2. this.name = elm.getLocalName();
  3. this.namespace = elm.getNamespaceURI();
  4. this.prefix = elm.getNamespacePrefix();
  5. for(int i = 0; i<elm.getAttributeCount(); i++) {
  6. Attribute attribute = elm.getAttribute(i);
  7. fields.add(new DefaultField(attribute.getNamespaceURI(), attribute.getNamespacePrefix(), attribute.getLocalName(), attribute.getValue()));
  8. }
  9. this.content = XmlUtil.innerToString(elm);
  10. }

代码示例来源:origin: nu.validator.htmlparser/htmlparser

  1. @Override
  2. protected void appendChildrenToNewParent(Element oldParent,
  3. Element newParent) throws SAXException {
  4. try {
  5. Nodes children = oldParent.removeChildren();
  6. for (int i = 0; i < children.size(); i++) {
  7. newParent.appendChild(children.get(i));
  8. }
  9. } catch (XMLException e) {
  10. fatal(e);
  11. }
  12. }

代码示例来源:origin: org.teiid/saxon-xom

  1. private static void appendNodes(Element elem, Nodes nodes) {
  2. if (nodes != null) {
  3. int size = nodes.size();
  4. for (int i=0; i < size; i++) {
  5. Node node = nodes.get(i);
  6. if (node instanceof Attribute) {
  7. elem.addAttribute((Attribute) node);
  8. } else {
  9. elem.insertChild(node, elem.getChildCount());
  10. }
  11. }
  12. }
  13. }

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

  1. public String getValue() {
  2. // currentElement.getValue() not used as this includes text of child elements, which we don't want.
  3. StringBuffer result = new StringBuffer();
  4. int childCount = currentElement.getChildCount();
  5. for(int i = 0; i < childCount; i++) {
  6. Node child = currentElement.getChild(i);
  7. if (child instanceof Text) {
  8. Text text = (Text) child;
  9. result.append(text.getValue());
  10. }
  11. }
  12. return result.toString();
  13. }

代码示例来源:origin: org.specrunner/specrunner-sql

  1. @Override
  2. public ISource transform(ISource source) throws SourceException {
  3. Document d = source.getDocument();
  4. Nodes tables = d.query("//table");
  5. for (int i = 0; i < tables.size(); i++) {
  6. Element table = (Element) tables.get(i);
  7. table.addAttribute(new Attribute("class", getValue()));
  8. }
  9. return source;
  10. }

相关文章