updated the servlet version. logging still needs work.

This commit is contained in:
amontano 2005-01-23 00:57:02 +00:00
parent 28d46bb207
commit 78373b3094
9 changed files with 251 additions and 57 deletions

View file

@ -35,15 +35,20 @@ import org.thdl.util.*;
public class CachedSyllableListTree implements SyllableListTree
{
SyllableListTree syllables[];
public CachedSyllableListTree(String archivo) throws Exception
{
this (archivo, true);
}
public CachedSyllableListTree(String archivo, boolean backwardCompatible) throws Exception
{
String sil;
long pos, defSources[];
DictionarySource sourceDef;
int i;
FileSyllableListTree.openFiles(archivo);
FileSyllableListTree.openFiles(archivo, backwardCompatible);
SimplifiedLinkedList syllables = new SimplifiedLinkedList();
do