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

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

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

Element.getFirstChildElement介绍

暂无

代码示例

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

  1. Element textElem = docElem.getFirstChildElement("TEXT");
  2. StringBuilder text = new StringBuilder();
  3. int offset = 0;

代码示例来源: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. if (rootNode.getFirstChildElement("response") == null) {
  2. throw new XMLException("The child node of <rest-client> should be <response>");
  3. responseNode = rootNode.getFirstChildElement("response");
  4. for (int i = 0; i < responseNode.getChildElements().size(); i++) {
  5. tNode = responseNode.getChildElements().get(i);

代码示例来源:origin: BruceEckel/OnJava8-Examples

  1. public APerson(Element person) {
  2. first = person
  3. .getFirstChildElement("first").getValue();
  4. last = person
  5. .getFirstChildElement("last").getValue();
  6. }
  7. @Override

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

  1. public Element getFirstChildElement(String name) {
  2. nu.xom.Element body = xomElement.getFirstChildElement(name);
  3. if (body == null) {
  4. return null;
  5. }
  6. return new Element(body);
  7. }

代码示例来源:origin: com.io7m.jstructural/io7m-jstructural-xom

  1. private static
  2. @Nullable
  3. Element getElement(
  4. final Element element,
  5. final String name)
  6. {
  7. return element.getFirstChildElement(name, SXML.XML_URI.toString());
  8. }

代码示例来源:origin: net.sf.opendse/opendse-optimization

  1. protected ResultElement getResultElement(nu.xom.Element eResult) throws IOException {
  2. nu.xom.Element eObjectives = eResult.getFirstChildElement("objectives");
  3. Collection<ObjectiveElement> objectiveElements = (eObjectives != null) ? getObjectiveElements(eObjectives)
  4. : new ArrayList<ObjectiveElement>();
  5. nu.xom.Element eSpecification = eResult.getFirstChildElement("specification");
  6. Specification spec = null;
  7. if (eSpecification != null) {
  8. SpecificationReader reader = new SpecificationReader();
  9. spec = reader.toSpecification(eSpecification);
  10. }
  11. return new ResultElement(objectiveElements, spec);
  12. }

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

  1. private void removeIrrelevantStylesheet(Element rootElement) {
  2. Element head = rootElement.getFirstChildElement("head");
  3. Element style = head.getFirstChildElement("style");
  4. head.removeChild(style);
  5. }

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

  1. @Override
  2. public void beforeParsing(Document document) {
  3. Element head = document.getRootElement().getFirstChildElement("head");
  4. removeExistingStyling(head);
  5. removeExistingScripts(head);
  6. }

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

  1. @Override
  2. public void beforeParsing(Document document) {
  3. Element head = document.getRootElement().getFirstChildElement("head");
  4. removeExistingStyling(head);
  5. removeExistingScripts(head);
  6. }

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

  1. /**
  2. * Adds Content-Type metadata to the document.
  3. */
  4. public void beforeParsing(Document document) {
  5. Element html = document.getRootElement();
  6. Element head = html.getFirstChildElement("head");
  7. Check.notNull(head, "<head> section is missing from document");
  8. if (!hasContentTypeMetadata(head)) {
  9. addContentTypeMetadata(head);
  10. }
  11. }

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

  1. /**
  2. * Adds Content-Type metadata to the document.
  3. */
  4. public void beforeParsing(Document document) {
  5. Element html = document.getRootElement();
  6. Element head = html.getFirstChildElement("head");
  7. Check.notNull(head, "<head> section is missing from document");
  8. if (!hasContentTypeMetadata(head)) {
  9. addContentTypeMetadata(head);
  10. }
  11. }

代码示例来源:origin: com.internetitem/create-reactor-core

  1. public static void appendModules(Element root, String namespace, List<String> modules) {
  2. Element modulesElement = root.getFirstChildElement("modules", namespace);
  3. if (modulesElement == null) {
  4. modulesElement = new Element("modules", namespace);
  5. root.appendChild(modulesElement);
  6. }
  7. for (String module : modules) {
  8. Element moduleElement = new Element("module", namespace);
  9. moduleElement.appendChild(module);
  10. modulesElement.appendChild(moduleElement);
  11. }
  12. }

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

  1. public void beforeParsing(Document document) {
  2. nu.xom.Element html = document.getRootElement();
  3. nu.xom.Element head = html.getFirstChildElement("head");
  4. Check.notNull(head, "<head> section is missing from document");
  5. script = new nu.xom.Element("script");
  6. script.addAttribute(new Attribute("type", "text/javascript"));
  7. // Fix for Issue #26: Strict XHTML DTD requires an explicit end tag for <script> element
  8. // Thanks to Matthias Schwegler for reporting and supplying a fix for this.
  9. script.appendChild("");
  10. head.appendChild(script);
  11. }

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

  1. private void removeIrrelevantFooter(Element rootElement) {
  2. Element body = rootElement.getFirstChildElement("body");
  3. body.removeChild(rootElement.query("//div[@class='footer']").get(0));
  4. }
  5. }

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

  1. private void removeIrrelevantFooter(Element rootElement) {
  2. Element body = rootElement.getFirstChildElement("body");
  3. body.removeChild(rootElement.query("//div[@class='footer']").get(0));
  4. }
  5. }

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

  1. public void beforeParsing(Document document) {
  2. nu.xom.Element html = document.getRootElement();
  3. nu.xom.Element head = html.getFirstChildElement("head");
  4. Check.notNull(head, "<head> section is missing from document");
  5. link = new nu.xom.Element("link");
  6. link.addAttribute(new Attribute("type", "text/css"));
  7. link.addAttribute(new Attribute("rel", "stylesheet"));
  8. head.appendChild(link);
  9. }

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

  1. public void beforeParsing(Document document) {
  2. nu.xom.Element html = document.getRootElement();
  3. nu.xom.Element head = html.getFirstChildElement("head");
  4. Check.notNull(head, "<head> section is missing from document");
  5. link = new nu.xom.Element("link");
  6. link.addAttribute(new Attribute("type", "text/css"));
  7. link.addAttribute(new Attribute("rel", "stylesheet"));
  8. head.appendChild(link);
  9. }

相关文章