本文整理汇总了Java中org.dom4j.VisitorSupport类的典型用法代码示例。如果您正苦于以下问题:Java VisitorSupport类的具体用法?Java VisitorSupport怎么用?Java VisitorSupport使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
VisitorSupport类属于org.dom4j包,在下文中一共展示了VisitorSupport类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: organizeNode
import org.dom4j.VisitorSupport; //导入依赖的package包/类
private void organizeNode(Document doc, final String parentName, final String childElName, final String idAttr,
final Map<String, Element> addTo) {
Element e = doc.getRootElement().element(parentName);
if (e != null) {
e.accept(new VisitorSupport() {
@Override
public void visit(Element node) {
if (childElName.equals(node.getName())) {
String id = node.attributeValue(idAttr);
if (id == null) {
log.warn("No " + idAttr + " attribute for Node " + node + " in " + name);
return;
}
if (addTo.put(id, node) != null) {
log.info("Replaced VFS Entry: " + childElName + "[" + id + "] from " + name);
}
}
}
});
}
}
开发者ID:stuckless,项目名称:sagetv-phoenix-core,代码行数:23,代码来源:VFSOrganizer.java
示例2: removeComments
import org.dom4j.VisitorSupport; //导入依赖的package包/类
/**
* Remove comments from XML
*
* @param document
* @throws IOException
* @throws DocumentException
*/
private static void removeComments(Document document) throws IOException, DocumentException {
Visitor visitor = new VisitorSupport() {
@Override
public void visit(Comment comment) {
comment.setText(" ");
}
};
document.accept(visitor);
}
开发者ID:alibaba,项目名称:atlas,代码行数:18,代码来源:ManifestFileUtils.java
注:本文中的org.dom4j.VisitorSupport类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论