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

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

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

Element.removeAttribute介绍

暂无

代码示例

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

  1. public void removeAttribute(String name) {
  2. xomElement.removeAttribute(xomElement.getAttribute(name));
  3. }

代码示例来源:origin: org.jboss.teiid/teiid-engine

  1. /**
  2. * Delete this node (that is, detach it from its parent)
  3. */
  4. public void delete() throws XPathException {
  5. if (parent != null) {
  6. if (nodeKind == Type.ATTRIBUTE) {
  7. ((Element) parent.node).removeAttribute((Attribute) node);
  8. } else {
  9. ((ParentNode) parent.node).removeChild(node);
  10. }
  11. }
  12. }

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

  1. public void removeAttribute(String localName, String namespaceURI) {
  2. xomElement.removeAttribute(xomElement.getAttribute(localName, namespaceURI));
  3. }

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

  1. public void removeAttribute(String localName, String namespaceURI) {
  2. xomElement.removeAttribute(xomElement.getAttribute(localName, namespaceURI));
  3. }

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

  1. public void removeAttribute(String name) {
  2. xomElement.removeAttribute(xomElement.getAttribute(name));
  3. }

代码示例来源: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: 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.xml-cml/cmlxom

  1. void substituteNameByValue(Attribute att) {
  2. // do not substitute refs
  3. if (att instanceof RefAttribute) {
  4. } else {
  5. String value = att.getValue();
  6. String value1 = value;
  7. String newValue = this.getValue().trim();
  8. if (!newValue.equals(S_EMPTY)) {
  9. value1 = value1.replaceAll(S_UNDER+this.getName()+S_UNDER, newValue);
  10. if (!value.equals(value1)) {
  11. Element parent = (Element) att.getParent();
  12. // remove attribute so as not to triffer reset error
  13. parent.removeAttribute(parent.getAttribute(att.getLocalName()));
  14. att.setValue(value1);
  15. parent.addAttribute(att);
  16. } else {
  17. }
  18. }
  19. }
  20. }

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

  1. if (isotopeInfo != null) element.removeAttribute(isotopeInfo);

代码示例来源:origin: org.openscience.cdk/cdk-pdbcml

  1. if (isotopeInfo != null) element.removeAttribute(isotopeInfo);

相关文章