* @param table The index table.
* @param i The index to add. */
private static void addIndex(Hashtable<Integer, IndexList> table, Index i)
{
int wid = i.getWord().getWordId();
if (table.get(wid) == null) table.put(wid, new IndexList());
table.get(wid).add(i);
}