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:
parent
67bddb7a7e
commit
0c891ec96c
8 changed files with 290 additions and 243 deletions
|
@ -39,6 +39,7 @@ import org.thdl.tib.text.tshegbar.UnicodeUtils;
|
|||
import org.thdl.util.ThdlDebug;
|
||||
import org.thdl.util.ThdlOptions;
|
||||
import org.thdl.util.Trie;
|
||||
import org.thdl.tib.scanner.BasicTibetanTranscriptionConverter;
|
||||
|
||||
/**
|
||||
* Interfaces between Extended Wylie and the TibetanMachineWeb fonts.
|
||||
|
@ -2016,7 +2017,7 @@ private static String acipForGlyph(String hashKey) {
|
|||
else
|
||||
// else we are not be able to use it because it's not smart
|
||||
// about stacks (e.g., W+W)
|
||||
return org.thdl.tib.scanner.Manipulate.wylieToAcip(hashKey);
|
||||
return BasicTibetanTranscriptionConverter.wylieToAcip(hashKey);
|
||||
}
|
||||
|
||||
/** Error that appears in a document when some TMW cannot be
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue