From f5b20d8acd2fc6638eb19aa385d4937c5cc0f081 Mon Sep 17 00:00:00 2001 From: Ram Viswanadha Date: Fri, 14 Nov 2003 00:09:37 +0000 Subject: [PATCH] ICU-3064 fix javadoc warnings X-SVN-Rev: 13723 --- icu4j/src/com/ibm/icu/text/IDNA.java | 14 +++++++------- icu4j/src/com/ibm/icu/text/StringPrep.java | 11 +++++------ 2 files changed, 12 insertions(+), 13 deletions(-) diff --git a/icu4j/src/com/ibm/icu/text/IDNA.java b/icu4j/src/com/ibm/icu/text/IDNA.java index 31a64d69d8..b1ec8eddc3 100644 --- a/icu4j/src/com/ibm/icu/text/IDNA.java +++ b/icu4j/src/com/ibm/icu/text/IDNA.java @@ -4,8 +4,8 @@ * others. All Rights Reserved. * ******************************************************************************* * $Source: /xsrl/Nsvn/icu/icu4j/src/com/ibm/icu/text/IDNA.java,v $ - * $Date: 2003/08/28 23:03:47 $ - * $Revision: 1.2 $ + * $Date: 2003/11/14 00:09:37 $ + * $Revision: 1.3 $ * ***************************************************************************************** */ @@ -18,7 +18,7 @@ import com.ibm.icu.impl.LocaleUtility; /** * - * IDNA API implements the IDNA protocol as defined in the IDNA RFC. + * IDNA API implements the IDNA protocol as defined in the IDNA RFC. * The draft defines 2 operations: ToASCII and ToUnicode. Domain labels * containing non-ASCII code points are required to be processed by * ToASCII operation before passing it to resolver libraries. Domain names @@ -57,21 +57,21 @@ public final class IDNA { * Option to prohibit processing of unassigned codepoints in the input and * do not check if the input conforms to STD-3 ASCII rules. * - * @see convertToASCII convertToUnicode + * @see #convertToASCII #convertToUnicode * @draft ICU 2.8 */ public static final int DEFAULT = 0x0000; /** * Option to allow processing of unassigned codepoints in the input * - * @see convertToASCII convertToUnicode + * @see #convertToASCII #convertToUnicode * @draft ICU 2.8 */ public static final int ALLOW_UNASSIGNED = 0x0001; /** * Option to check if input conforms to STD-3 ASCII rules * - * @see convertToASCII convertToUnicode + * @see #convertToASCII #convertToUnicode * @draft ICU 2.8 */ public static final int USE_STD3_RULES = 0x0002; @@ -200,7 +200,7 @@ public final class IDNA { * @return true if the char is a label separator * @draft ICU 2.8 */ - public static boolean isLabelSeparator(int ch){ + private static boolean isLabelSeparator(int ch){ switch(ch){ case 0x002e: case 0x3002: diff --git a/icu4j/src/com/ibm/icu/text/StringPrep.java b/icu4j/src/com/ibm/icu/text/StringPrep.java index 4d66bb3f7e..21e8586b37 100644 --- a/icu4j/src/com/ibm/icu/text/StringPrep.java +++ b/icu4j/src/com/ibm/icu/text/StringPrep.java @@ -4,8 +4,8 @@ * others. All Rights Reserved. * ******************************************************************************* * $Source: /xsrl/Nsvn/icu/icu4j/src/com/ibm/icu/text/StringPrep.java,v $ - * $Date: 2003/08/28 23:03:47 $ - * $Revision: 1.2 $ + * $Date: 2003/11/14 00:09:37 $ + * $Revision: 1.3 $ * ***************************************************************************************** */ @@ -59,7 +59,7 @@ public final class StringPrep { /** * Option to prohibit processing of unassigned code points in the input * - * @see prepare + * @see #prepare * @draft ICU 2.8 */ public static final int DEFAULT = 0x0000; @@ -67,7 +67,7 @@ public final class StringPrep { /** * Option to allow processing of unassigned code points in the input * - * @see prepare + * @see #prepare * @draft ICU 2.8 */ public static final int ALLOW_UNASSIGNED = 0x0001; @@ -160,8 +160,7 @@ public final class StringPrep { * The object does not hold a reference to the input steam, so the stream can be * closed after the method returns. * - * @param inputStream The stream for reading the StringPrep profile binary - * @return StringPrep object created from the input stream + * @param inputStream The stream for reading the StringPrep profile binarySun * @throws IOException * @draft ICU 2.8 */