I did this stuff back in August. It's all in support of EWTS->Tibetan
conversion. The tag 'TODO(DLC)[EWTS->Tibetan]' exists all over the place. EWTS->Tibetan isn't here yet; lexing isn't here yet; this is mainly a refactoring so that the ACIP->Tibetan code can be reused to do EWTS->Tibetan. I'm committing this because tests pass (it shouldn't be breaking anything), because I want a checkpoint, and because the laptop this sandbox was on isn't my preferred development environment.
This commit is contained in:
parent
83f499b7a8
commit
37bf9a736d
26 changed files with 43219 additions and 98 deletions
57
source/org/thdl/tib/text/ttt/ACIPTraits.java
Normal file
57
source/org/thdl/tib/text/ttt/ACIPTraits.java
Normal file
|
@ -0,0 +1,57 @@
|
|||
/*
|
||||
The contents of this file are subject to the THDL Open Community License
|
||||
Version 1.0 (the "License"); you may not use this file except in compliance
|
||||
with the License. You may obtain a copy of the License on the THDL web site
|
||||
(http://www.thdl.org/).
|
||||
|
||||
Software distributed under the License is distributed on an "AS IS" basis,
|
||||
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
|
||||
License for the specific terms governing rights and limitations under the
|
||||
License.
|
||||
|
||||
The Initial Developer of this software is the Tibetan and Himalayan Digital
|
||||
Library (THDL). Portions created by the THDL are Copyright 2003-2004 THDL.
|
||||
All Rights Reserved.
|
||||
|
||||
Contributor(s): ______________________________________.
|
||||
*/
|
||||
|
||||
package org.thdl.tib.text.ttt;
|
||||
|
||||
/** A singleton class that should contain (but due to laziness and
|
||||
* ignorance probably does not contain) all the traits that make ACIP
|
||||
* transliteration different from other (say, EWTS)
|
||||
* transliterations. */
|
||||
final class ACIPTraits implements TTraits {
|
||||
/** sole instance of this class */
|
||||
private static ACIPTraits singleton = null;
|
||||
|
||||
/** Just a constructor. */
|
||||
private ACIPTraits() { }
|
||||
|
||||
/** Returns the singleton instance of this class. */
|
||||
public static ACIPTraits instance() {
|
||||
if (null == singleton) {
|
||||
singleton = new ACIPTraits();
|
||||
}
|
||||
return singleton;
|
||||
}
|
||||
|
||||
/** Returns "-". */
|
||||
public String disambiguator() { return "-"; }
|
||||
|
||||
/** Returns '-'. */
|
||||
public char disambiguatorChar() { return '-'; }
|
||||
|
||||
public int maxConsonantLength() { return ACIPRules.MAX_CONSONANT_LENGTH; }
|
||||
|
||||
public int maxWowelLength() { return ACIPRules.MAX_WOWEL_LENGTH; }
|
||||
|
||||
public boolean isConsonant(String s) { return ACIPRules.isConsonant(s); }
|
||||
|
||||
public boolean isWowel(String s) { return ACIPRules.isWowel(s); }
|
||||
|
||||
public boolean hasSimpleError(TPair p) {
|
||||
return ("A".equals(p.getLeft()) && null == p.getRight());
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue