Example usage for org.dom4j Node getUniquePath

List of usage examples for org.dom4j Node getUniquePath

Introduction

In this page you can find the example usage for org.dom4j Node getUniquePath.

Prototype

String getUniquePath();

Source Link

Document

Returns the XPath expression which will return a nodeset of one node which is the current node.

Usage

From source file:org.onecmdb.core.utils.transform.xml.XMLRow.java

License:Open Source License

public XMLRow(DataSet dataSet, Node node) {
    this.node = node;
    this.dataSet = dataSet;
    setName(node.getUniquePath());
}