예제 #1
0
파일: Index.java 프로젝트: rkfg/Hive2Hive
 /**
  * Returns the full path (starting at the root) of this node
  *
  * @return
  */
 public Path getFullPath() {
   if (parent == null) {
     return Paths.get("");
   } else {
     return Paths.get(parent.getFullPath().toString(), getName());
   }
 }