/** @return le chemin pour accéder à cette node sous une forme du type (ROOT)123012 etc. */ public String getCompactPath() { if (parent == this) { return ""; } else { return parent.getCompactPath() + positionInParentNode; } }