2003-04-25 01:39:15 +00:00
|
|
|
package com.ibm.text.UCD;
|
|
|
|
public class NFCSkippable {
|
2002-04-23 22:50:15 +00:00
|
|
|
|
|
|
|
// find all the characters that are
|
|
|
|
// a) not decomposed by this normalization form
|
|
|
|
// b) of combining class 0
|
|
|
|
// AND if NKC or NFKC,
|
|
|
|
// c) can never compose with a previous character
|
|
|
|
// d) can never compose with a following character
|
|
|
|
// e) can never change if another character is added
|
|
|
|
// Example: a-breve might satisfy a-d, but if you
|
|
|
|
// add an ogonek it changes to a-ogonek + breve
|
|
|
|
|
|
|
|
public boolean is(int cp) {
|
2003-04-25 01:39:15 +00:00
|
|
|
return false;
|
2002-04-23 22:50:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public static void main (String[] args) {
|
|
|
|
}
|
|
|
|
}
|