diff -r f66bcda82345 -r f14e9730d4e9 rt/emul/mini/src/main/java/java/lang/Character.java --- a/rt/emul/mini/src/main/java/java/lang/Character.java Sun Sep 22 21:42:48 2013 +0200 +++ b/rt/emul/mini/src/main/java/java/lang/Character.java Mon Oct 07 16:17:21 2013 +0200 @@ -572,6 +572,46 @@ */ public static final int MAX_CODE_POINT = 0X10FFFF; + public static boolean isAlphabetic(int ch) { + throw new UnsupportedOperationException("isAlphabetic: " + (char)ch); + } + + public static boolean isIdeographic(int ch) { + throw new UnsupportedOperationException("isIdeographic: " + (char)ch); + } + + public static boolean isLowerCase(int ch) { + throw new UnsupportedOperationException("isLowerCase: " + (char)ch); + } + + public static boolean isUpperCase(int ch) { + throw new UnsupportedOperationException("isUpperCase: " + (char)ch); + } + + public static boolean isMirrored(int ch) { + throw new UnsupportedOperationException("isMirrored: " + (char)ch); + } + + public static boolean isIdentifierIgnorable(int ch) { + throw new UnsupportedOperationException("isIdentifierIgnorable: " + (char)ch); + } + + public static boolean isUnicodeIdentifierPart(int ch) { + throw new UnsupportedOperationException("isUnicodeIdentifierPart: " + (char)ch); + } + + public static boolean isUnicodeIdentifierStart(int ch) { + throw new UnsupportedOperationException("isUnicodeIdentifierStart: " + (char)ch); + } + + public static char toUpperCase(int ch) { + throw new UnsupportedOperationException("toUpperCase: " + (char)ch); + } + + public static int toLowerCase(int ch) { + throw new UnsupportedOperationException("toLowerCase: " + (char)ch); + } + /** * Instances of this class represent particular subsets of the Unicode @@ -1892,8 +1932,8 @@ return fromCodeChars(codePoint).matches("\\w"); } - static int getType(int x) { - throw new UnsupportedOperationException(); + public static int getType(int x) { + throw new UnsupportedOperationException("getType: " + (char)x); } /**