updated the servlet version. logging still needs work.
This commit is contained in:
parent
28d46bb207
commit
78373b3094
9 changed files with 251 additions and 57 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue