本文整理汇总了Java中org.dom4j.Element.getNodeType方法的典型用法代码示例。如果您正苦于以下问题:Java Element.getNodeType方法的具体用法?Java Element.getNodeType怎么用?Java Element.getNodeType使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.dom4j.Element
的用法示例。
在下文中一共展示了Element.getNodeType方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: removeChild
import org.dom4j.Element; //导入方法依赖的package包/类
/**
* If some node is to be skipped, we do it in this method
*
* @param matchedNode
*/
public void removeChild( Element matchedNode ) {
// remove the matched node
matchedNode.detach();
// now we have to regenerate info that might have been affected
this.value = this.node.getTextTrim();
this.children.clear();
List<Element> childrenElements = this.node.elements();
for (Element child : childrenElements) {
if (child.getNodeType() == Node.ELEMENT_NODE) {
this.children.add(new XmlNode(this, child));
}
}
}
示例2: XmlNode
import org.dom4j.Element; //导入方法依赖的package包/类
public XmlNode( XmlNode parent, Element node ) {
this.node = node;
Namespace nodeNamespace = node.getNamespace();
if (nodeNamespace != null && !StringUtils.isNullOrEmpty(nodeNamespace.getPrefix())) {
this.name = nodeNamespace.getPrefix() + ":" + node.getName();
} else {
this.name = node.getName();
}
this.attributes = new TreeMap<>();
for (int i = 0; i < node.attributes().size(); i++) {
Attribute att = node.attribute(i);
this.attributes.put(att.getName(), att.getValue());
}
this.value = this.node.getTextTrim();
this.parent = parent;
this.children = new ArrayList<>();
List<Element> childrenElements = this.node.elements();
for (Element child : childrenElements) {
if (child.getNodeType() == Node.ELEMENT_NODE) {
this.children.add(new XmlNode(this, child));
}
}
}