Ejemplo n.º 1
0
 public void calculateStatistics() { // Just a bunch of numbers
   for (int i = 0; i < Rewrite.MAX; i++) {
     markerWord = markerWord2;
     Hashtable hm = maps[i];
     Iterator iter = hm.keySet().iterator();
     while (iter.hasNext()) {
       String key = (String) iter.next();
       PrefixEntry e = (PrefixEntry) hm.get(key);
       e.calculateStatistics(this);
     }
   }
 }