All Downloads are FREE. Search and download functionalities are using the official Maven repository.

eu.xenit.apix.filefolder.NodePath Maven / Gradle / Ivy

There is a newer version: 4.1.2
Show newest version
package eu.xenit.apix.filefolder;

/**
 * The Node Path component displays the full path to the specified Node. The displaypath is the human readable
 * representation while the qnamePath is the technical representation.
 */
public class NodePath {

    private String displayPath;
    private String qnamePath;

    public String getDisplayPath() {
        return displayPath;
    }

    public void setDisplayPath(String displayPath) {
        this.displayPath = displayPath;
    }

    public String getQnamePath() {
        return qnamePath;
    }

    public void setQnamePath(String qnamePath) {
        this.qnamePath = qnamePath;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy