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

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

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

Element.insertChild介绍

暂无

代码示例

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

  1. public Element prependChild(Element element) {
  2. xomElement.insertChild(element.xomElement, 0);
  3. return this;
  4. }

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

  1. public Element prependChild(Element element) {
  2. xomElement.insertChild(element.xomElement, 0);
  3. return this;
  4. }

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

  1. public Element prependText(String text) {
  2. xomElement.insertChild(new nu.xom.Text(text), 0);
  3. return this;
  4. }

代码示例来源:origin: org.xml-cml/cmlxom

  1. /** override insertChild.
  2. * if newNode has parent detach()es first
  3. * @param newNode
  4. * @param pos
  5. */
  6. public void insertChild(Node newNode, int pos) {
  7. newNode.detach();
  8. super.insertChild(newNode, pos);
  9. }

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

  1. public Element prependText(String text) {
  2. xomElement.insertChild(new nu.xom.Text(text), 0);
  3. return this;
  4. }

代码示例来源:origin: com.io7m.kstructural/io7m-kstructural-frontend

  1. private KSBrandAppender(
  2. final Optional<Element> in_brand_top,
  3. final Optional<Element> in_brand_bottom)
  4. {
  5. this.brand_start = NullCheck.notNull(in_brand_top);
  6. this.brand_end = NullCheck.notNull(in_brand_bottom);
  7. this.appender_start = (e) -> {
  8. if (this.brand_start.isPresent()) {
  9. e.insertChild(this.brand_start.get().copy(), 0);
  10. }
  11. };
  12. this.appender_end = (e) -> {
  13. if (this.brand_end.isPresent()) {
  14. e.insertChild(this.brand_end.get().copy(), 0);
  15. }
  16. };
  17. }

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

  1. public void appendSister(Element element) {
  2. nu.xom.Element xomParentElement = (nu.xom.Element) xomElement.getParent();
  3. int elementIndex = xomParentElement.indexOf(xomElement);
  4. xomParentElement.insertChild(element.xomElement, elementIndex + 1);
  5. }

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

  1. public void appendSister(Element element) {
  2. nu.xom.Element xomParentElement = (nu.xom.Element) xomElement.getParent();
  3. int elementIndex = xomParentElement.indexOf(xomElement);
  4. xomParentElement.insertChild(element.xomElement, elementIndex + 1);
  5. }

代码示例来源:origin: org.xml-cml/cmlxom

  1. /** replace current element by its child nodes.
  2. * does not work for root node
  3. *
  4. */
  5. public void replaceByChildren() {
  6. Node parent = this.getParent();
  7. if (parent == null) {
  8. } else if (!(parent instanceof Element)) {
  9. } else {
  10. Element parentElement = (Element) parent;
  11. int idx = parentElement.indexOf(this);
  12. List<Node> nodeList = new ArrayList<Node>();
  13. for (int i = 0; i < this.getChildCount(); i++) {
  14. nodeList.add(this.getChild(i));
  15. }
  16. for (int i = 0; i < nodeList.size(); i++) {
  17. Node node = nodeList.get(i);
  18. node.detach();
  19. parentElement.insertChild(node, idx + i);
  20. }
  21. }
  22. this.detach();
  23. }
  24. /**

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

  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: 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: org.xml-cml/cmlxom

  1. /**
  2. * transfers children of 'from' to 'to'.
  3. *
  4. * @param from
  5. * (will be left with no children)
  6. * @param to
  7. * (will gain 'from' children appended after any existing
  8. * children
  9. */
  10. public static void transferChildren(Element from, Element to) {
  11. int nc = from.getChildCount();
  12. int tc = to.getChildCount();
  13. for (int i = nc - 1; i >= 0; i--) {
  14. Node child = from.getChild(i);
  15. child.detach();
  16. to.insertChild(child, tc);
  17. }
  18. }

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

  1. private void addContentTypeMetadata(Element head) {
  2. Element meta = new Element("meta");
  3. meta.addAttribute(new Attribute("http-equiv", "content-type"));
  4. meta.addAttribute(new Attribute("content", "text/html; charset=UTF-8"));
  5. head.insertChild(meta, 0);
  6. }

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

  1. private void addContentTypeMetadata(Element head) {
  2. Element meta = new Element("meta");
  3. meta.addAttribute(new Attribute("http-equiv", "content-type"));
  4. meta.addAttribute(new Attribute("content", "text/html; charset=UTF-8"));
  5. head.insertChild(meta, 0);
  6. }

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

  1. /**
  2. * Improves the structure of an HTML document. If the &lt;head&gt; section
  3. * is missing, one is added at the top of the document and any nodes
  4. * in front of the &lt;body&gt; section are moved into it.
  5. */
  6. public void beforeParsing(Document document) {
  7. Element html = document.getRootElement();
  8. Check.isTrue("html".equals(html.getLocalName()),
  9. "Only <html> documents are supported (<" + html.getLocalName() + "> is not)");
  10. if (!hasHeadSection(html)) {
  11. Element head = new Element("head");
  12. copyNodesBeforeBodyIntoHead(html, head);
  13. html.insertChild(head, 0);
  14. }
  15. }

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

  1. /**
  2. * Improves the structure of an HTML document. If the &lt;head&gt; section
  3. * is missing, one is added at the top of the document and any nodes
  4. * in front of the &lt;body&gt; section are moved into it.
  5. */
  6. public void beforeParsing(Document document) {
  7. Element html = document.getRootElement();
  8. Check.isTrue("html".equals(html.getLocalName()),
  9. "Only <html> documents are supported (<" + html.getLocalName() + "> is not)");
  10. if (!hasHeadSection(html)) {
  11. Element head = new Element("head");
  12. copyNodesBeforeBodyIntoHead(html, head);
  13. html.insertChild(head, 0);
  14. }
  15. }

代码示例来源: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: 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. Element html = document.getRootElement();
  3. Element head = html.getFirstChildElement("head");
  4. Check.notNull(head, "<head> section is missing from document");
  5. Element style = new Element("style");
  6. String updatedStylesheetContent = updateConcordionNamespacePrefix(html, stylesheetContent);
  7. style.appendChild(updatedStylesheetContent);
  8. if (appendChild) {
  9. head.appendChild(style);
  10. } else {
  11. head.insertChild(style, 0);
  12. }
  13. }

代码示例来源: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 style = new Element("style");
  6. String updatedStylesheetContent = updateConcordionNamespacePrefix(html, stylesheetContent);
  7. style.appendChild(updatedStylesheetContent);
  8. if (appendChild) {
  9. head.appendChild(style);
  10. } else {
  11. head.insertChild(style, 0);
  12. }
  13. }

相关文章