< prev index next >

jdk/src/java.base/share/classes/sun/text/normalizer/Replaceable.java

Print this page

        

@@ -1,7 +1,7 @@
 /*
- * Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2005, 2015, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
  * under the terms of the GNU General Public License version 2 only, as
  * published by the Free Software Foundation.  Oracle designates this

@@ -80,11 +80,11 @@
  * <p>Copyright &copy; IBM Corporation 1999.  All rights reserved.
  *
  * @author Alan Liu
  * @stable ICU 2.0
  */
-public interface Replaceable {
+interface Replaceable {
     /**
      * Returns the number of 16-bit code units in the text.
      * @return number of 16-bit code units in text
      * @stable ICU 2.0
      */

@@ -97,11 +97,10 @@
      * @return 16-bit code unit of text at given offset
      * @stable ICU 2.0
      */
     char charAt(int offset);
 
-    //// for StringPrep
     /**
      * Copies characters from this object into the destination
      * character array.  The first character to be copied is at index
      * <code>srcStart</code>; the last character to be copied is at
      * index <code>srcLimit-1</code> (thus the total number of
< prev index next >