Index: E:/projects/clear/eclipse/workspace/text/src/main/java/java/text/BreakIterator.java =================================================================== --- E:/projects/clear/eclipse/workspace/text/src/main/java/java/text/BreakIterator.java (revision 382315) +++ E:/projects/clear/eclipse/workspace/text/src/main/java/java/text/BreakIterator.java (working copy) @@ -15,9 +15,10 @@ package java.text; - import java.util.Locale; +import org.apache.harmony.luni.util.NotYetImplementedException; + /** * This class is used to locate the boundaries of text. Instance of this class * can be got by some factory methods: @@ -362,4 +363,28 @@ throw new InternalError(e.getMessage()); } } + + /** + * This method is added by Java SE 5 without any spec, but will be removed + * by Java SE 6, so this method is not implemented by Harmony. + */ + protected static long getLong(byte[] buf, int offset) { + throw new NotYetImplementedException(); + } + + /** + * This method is added by Java SE 5 without any spec, but will be removed + * by Java SE 6, so this method is not implemented by Harmony. + */ + protected static int getInt(byte[] buf, int offset) { + throw new NotYetImplementedException(); + } + + /** + * This method is added by Java SE 5 without any spec, but will be removed + * by Java SE 6, so this method is not implemented by Harmony. + */ + protected static short getShort(byte[] buf, int offset) { + throw new NotYetImplementedException(); + } }