< prev index next >

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

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2005, 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 --- 1,7 ---- /* ! * 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,90 **** * <p>Copyright &copy; IBM Corporation 1999. All rights reserved. * * @author Alan Liu * @stable ICU 2.0 */ ! public 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 */ --- 80,90 ---- * <p>Copyright &copy; IBM Corporation 1999. All rights reserved. * * @author Alan Liu * @stable ICU 2.0 */ ! 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,107 **** * @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 --- 97,106 ----
< prev index next >