The org.thdl.tib.scanner.Manipulate class was originally meant as a grab-bag of methods processing strings representing tibetan wylie. It doesn't make sense to leave there the wrap-up methods for converting from and to the various transcription schemes. Moved them to BasicTibetanTranscriptionConverter and updated all classes that point to them.

This commit is contained in:
amontano 2006-04-24 19:19:04 +00:00
parent 67bddb7a7e
commit 0c891ec96c
8 changed files with 290 additions and 243 deletions

View file

@ -99,7 +99,7 @@ public class AcipToWylie
String linea;
while ((linea=in.readLine())!=null)
{
out.println(Manipulate.acipToWylie(linea));
out.println(BasicTibetanTranscriptionConverter.acipToWylie(linea));
}
out.flush();
}