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

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

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

Element.detach介绍

暂无

代码示例

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

  1. @Override
  2. protected void detachFromParent(Element element) throws SAXException {
  3. try {
  4. element.detach();
  5. } catch (XMLException e) {
  6. fatal(e);
  7. }
  8. }

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

  1. /**
  2. * Calls detach() on all XHTML children of this element.
  3. */
  4. public void removeXHTMLChildren() {
  5. List<Element> list = this.getXHTMLElementList();
  6. for (Element elem : list) {
  7. elem.detach();
  8. }
  9. }

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

  1. @Override
  2. protected void detachFromParent(Element element) throws SAXException {
  3. try {
  4. element.detach();
  5. } catch (XMLException e) {
  6. fatal(e);
  7. }
  8. }

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

  1. @Override
  2. protected void detachFromParent(Element element) throws SAXException {
  3. try {
  4. element.detach();
  5. } catch (XMLException e) {
  6. fatal(e);
  7. }
  8. }

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

  1. @Override
  2. protected void appendElement(Element child,
  3. Element newParent) throws SAXException {
  4. try {
  5. child.detach();
  6. newParent.appendChild(child);
  7. } catch (XMLException e) {
  8. fatal(e);
  9. }
  10. }

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

  1. @Override
  2. protected void appendElement(Element child,
  3. Element newParent) throws SAXException {
  4. try {
  5. child.detach();
  6. newParent.appendChild(child);
  7. } catch (XMLException e) {
  8. fatal(e);
  9. }
  10. }

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

  1. @Override
  2. protected void appendElement(Element child,
  3. Element newParent) throws SAXException {
  4. try {
  5. child.detach();
  6. newParent.appendChild(child);
  7. } catch (XMLException e) {
  8. fatal(e);
  9. }
  10. }

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

  1. public static void detach(nu.xom.Element element) {
  2. ParentNode parent = (element == null) ? null : element.getParent();
  3. if (parent != null) {
  4. if (parent instanceof Document) {
  5. parent.replaceChild(element, new Element(DUMMY));
  6. } else {
  7. element.detach();
  8. }
  9. }
  10. }

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

  1. /** parses a non-subclassed element into CML.
  2. * Typically used when other software such as
  3. * XOM or XSLT create elements through the normal
  4. * builder.
  5. * Removes any Document parent
  6. * Serializes the element and re-parses with CMLBuilder()
  7. * @param element
  8. * @return CMLElement (null if root element is not CML)
  9. */
  10. public static CMLElement createCMLElement(Element element) {
  11. Element newElement = null;
  12. try {
  13. newElement = new CMLBuilder().parseString(CMLUtil.toXMLString(element));
  14. } catch (Exception e) {
  15. throw new RuntimeException("BUG", e);
  16. }
  17. if (!(newElement instanceof CMLElement)) {
  18. newElement = null;
  19. } else {
  20. newElement.detach();
  21. }
  22. return (CMLElement) newElement;
  23. }
  24. /**

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

  1. static void reparentBodyNode(
  2. final Element current_body,
  3. final @Nullable Element target_body)
  4. {
  5. if (target_body != null) {
  6. final Node rbody_root = SXHTMLReparent.getAbsoluteAncestor(target_body);
  7. assert rbody_root != null;
  8. final ParentNode current_body_parent = current_body.getParent();
  9. assert current_body_parent != null;
  10. current_body.detach();
  11. current_body_parent.appendChild(rbody_root);
  12. target_body.appendChild(current_body);
  13. }
  14. }
  15. }

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

  1. .get(j)).getFirstCMLChild(CMLMolecule.TAG);
  2. try {
  3. reactProd.get(j).detach();
  4. this.appendChild(molecule);
  5. matched = true;

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

  1. /**
  2. * delete any substance with only a name. I think this is obsolescent...
  3. *
  4. */
  5. public void removeOrphanSubstances() {
  6. CMLSubstanceList substanceList = (CMLSubstanceList) this
  7. .getFirstCMLChild("substanceList");
  8. if (substanceList != null) {
  9. Elements substances = substanceList
  10. .getChildCMLElements("substance");
  11. for (int i = 0; i < substances.size(); i++) {
  12. Elements childNodes = substances.get(i).getChildElements();
  13. if (childNodes.size() == 1
  14. && childNodes.get(0) instanceof CMLName) {
  15. substances.get(i).detach();
  16. }
  17. }
  18. }
  19. }

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

  1. private void mergePRLists(Component prListC, Component prC) {
  2. Elements prLists = this.getChildCMLElements(prListC.name);
  3. if (prLists.size() > 1) {
  4. for (int i = 1; i < prLists.size(); i++) {
  5. CMLElement prList = (CMLElement) prLists.get(i);
  6. Elements prs = prList.getChildCMLElements(prC.name);
  7. for (int j = 0; j < prs.size(); j++) {
  8. Element pr = prs.get(j);
  9. pr.detach();
  10. prLists.get(0).appendChild(pr);
  11. }
  12. prList.detach();
  13. }
  14. }
  15. }

相关文章