Ejemplo n.º 1
0
 public int total() {
   int size = 1;
   for (AbstractNode n : this) {
     size += n.total();
   }
   return size;
 }