示例#1
0
 /** Print leafsets of all nodes in pastryNodes. */
 private void printLeafSets() {
   for (int i = 0; i < pastryNodes.size(); i++) {
     PastryNode pn = (PastryNode) pastryNodes.get(i);
     System.out.println(pn.getLeafSet().toString());
   }
 }