Beispiel #1
0
 /** Recursive Method for getPath() */
 private void addToPathVector(Vector pathVector) {
   pathVector.add(0, this); // Add myself to beginning of Vector
   if (parent != null) {
     ((NodeAdapter) parent).addToPathVector(pathVector);
   }
 }