ICU-2700 Javadoc links updated

X-SVN-Rev: 11014
This commit is contained in:
Syn Wee Quek 2003-02-11 01:19:02 +00:00
parent 483da7c7df
commit 0bca745b95
8 changed files with 37 additions and 46 deletions

View File

@ -5,8 +5,8 @@
*******************************************************************************
*
* $Source: /xsrl/Nsvn/icu/icu4j/src/com/ibm/icu/impl/BOCU.java,v $
* $Date: 2002/10/31 22:35:20 $
* $Revision: 1.3 $
* $Date: 2003/02/11 01:17:52 $
* $Revision: 1.4 $
*
*******************************************************************************
*/
@ -19,7 +19,7 @@ import com.ibm.icu.text.UCharacterIterator;
* <p>Binary Ordered Compression for Unicode</p>
*
* <p>Users are strongly encouraged to read the ICU paper on
* <a href=http://oss.software.ibm.com/docs/papers/binary_ordered_compression_for_unicode.html>
* <a href=http://oss.software.ibm.com/icu/docs/papers/binary_ordered_compression_for_unicode.html>
* BOCU</a> before attempting to use this class.</p>
*
* <p>BOCU is used to compress unicode text into a stream of unsigned

View File

@ -6,8 +6,8 @@
*
* $Source:
* /usr/cvs/icu4j/icu4j/src/com/ibm/icu/text/UCharacterName.java $
* $Date: 2003/01/28 18:55:38 $
* $Revision: 1.3 $
* $Date: 2003/02/11 01:17:52 $
* $Revision: 1.4 $
*
*******************************************************************************
*/
@ -24,7 +24,7 @@ import com.ibm.icu.lang.UCharacterCategory;
/**
* Internal class to manage character names.
* Since data in <a href=UCharacterNameDB.html>UCharacterNameDB</a> is stored
* Since data for names are stored
* in an array of char, by default indexes used in this class is refering to
* a 2 byte count, unless otherwise stated. Cases where the index is refering
* to a byte count, the index is halved and depending on whether the index is
@ -32,11 +32,8 @@ import com.ibm.icu.lang.UCharacterCategory;
* returned. For indexes to an array of int, the index is multiplied by 2,
* result char at the multiplied index and its following char is returned as an
* int.
* <a href=UCharacter.html>UCharacter</a> acts as a public facade for this class
* <a href=../lang/UCharacter.html>UCharacter</a> acts as a public facade for this class
* Note : 0 - 0x1F are control characters without names in Unicode 3.0
* Information on parsing of the binary data is located at
* <a href=oss.software.ibm.com/icu4j/icu4jhtml/com/ibm/icu/text/readme.html>
* ReadMe</a>
* @author Syn Wee Quek
* @since nov0700
*/

View File

@ -5,8 +5,8 @@
*******************************************************************************
*
* $Source: /xsrl/Nsvn/icu/icu4j/src/com/ibm/icu/impl/UCharacterNameReader.java,v $
* $Date: 2002/10/09 23:53:24 $
* $Revision: 1.2 $
* $Date: 2003/02/11 01:17:52 $
* $Revision: 1.3 $
*
*******************************************************************************
*/
@ -22,11 +22,8 @@ import java.util.Arrays;
* Unicode codepoint name data.</p>
* <p>This class simply reads unames.icu, authenticates that it is a valid
* ICU data file and split its contents up into blocks of data for use in
* <a href=UCharacterName.html>com.ibm.icu.lang.UCharacterName</a>.
* <a href=UCharacterName.html>com.ibm.icu.impl.UCharacterName</a>.
* </p>
* <p>For more information about the format of unames.icu refer to
* <a href=oss.software.ibm.com/icu4j/icu4jhtml/com/ibm/icu/lang/readme.html>
* ReadMe</a>.<\p>
* <p>unames.icu which is in big-endian format is jared together with this
* package.</p>
* @author Syn Wee Quek

View File

@ -5,8 +5,8 @@
*******************************************************************************
*
* $Source: /xsrl/Nsvn/icu/icu4j/src/com/ibm/icu/impl/UCharacterPropertyReader.java,v $
* $Date: 2002/10/09 23:53:24 $
* $Revision: 1.8 $
* $Date: 2003/02/11 01:17:52 $
* $Revision: 1.9 $
*
*******************************************************************************
*/
@ -24,9 +24,6 @@ import com.ibm.icu.util.VersionInfo;
* ICU data file and split its contents up into blocks of data for use in
* <a href=UCharacterProperty.html>com.ibm.icu.impl.UCharacterProperty</a>.
* </p>
* <p>For more information about the format of uprops.icu refer to
* <a href=oss.software.ibm.com/icu4j/icu4jhtml/com/ibm/icu/lang/readme.html>
* ReadMe</a>.<\p>
* <p>uprops.icu which is in big-endian format is jared together with this
* package.</p>
* @author Syn Wee Quek

View File

@ -5,8 +5,8 @@
*******************************************************************************
*
* $Source: /xsrl/Nsvn/icu/icu4j/src/com/ibm/icu/lang/UCharacter.java,v $
* $Date: 2003/02/11 00:49:17 $
* $Revision: 1.63 $
* $Date: 2003/02/11 01:18:45 $
* $Revision: 1.64 $
*
*******************************************************************************
*/
@ -31,7 +31,7 @@ import com.ibm.icu.impl.UPropertyAliases;
* The UCharacter class provides extensions to the
* <a href=http://java.sun.com/j2se/1.3/docs/api/java/lang/Character.html>
* java.lang.Character</a> class. These extensions provide support for
* Unicode 3.2 properties and together with the <a href=UTF16.html>UTF16</a>
* Unicode 3.2 properties and together with the <a href=../text/UTF16.html>UTF16</a>
* class, provide support for supplementary characters (those with code
* points above U+FFFF).
* </p>

View File

@ -5,8 +5,8 @@
*******************************************************************************
*
* $Source: /xsrl/Nsvn/icu/icu4j/src/com/ibm/icu/text/Collator.java,v $
* $Date: 2003/01/28 18:55:41 $
* $Revision: 1.20 $
* $Date: 2003/02/11 01:19:02 $
* $Revision: 1.21 $
*
*******************************************************************************
*/
@ -52,7 +52,7 @@ import com.ibm.icu.impl.ICUService.Factory;
* difference between large and small Kana. A tertiary difference is ignored
* when there is a primary or secondary difference anywhere in the strings.
* <li>QUATERNARY strength: When punctuation is ignored
* <a href=http://www-124.ibm.com/icu/userguide/Collate_Concepts.html#Ignoring_Punctuation>
* <a href=http://oss.software.ibm.com/icu/userguide/Collate_Concepts.html#Ignoring_Punctuation>
* (see Ignoring Punctuations in the user guide)</a> at PRIMARY to TERTIARY
* strength, an additional strength level can
* be used to distinguish words with and without punctuation (for example,
@ -161,7 +161,7 @@ public abstract class Collator implements Comparator, Cloneable
/**
* Fourth level collator strength value.
* When punctuation is ignored
* <a href="http://www-124.ibm.com/icu/userguide/Collate_Concepts.html#Ignoring_Punctuation">
* <a href="http://oss.software.ibm.com/icu/userguide/Collate_Concepts.html#Ignoring_Punctuation">
* (see Ignoring Punctuations in the user guide)</a> at PRIMARY to TERTIARY
* strength, an additional strength level can
* be used to distinguish words with and without punctuation.

View File

@ -5,8 +5,8 @@
*******************************************************************************
*
* $Source: /xsrl/Nsvn/icu/icu4j/src/com/ibm/icu/text/RuleBasedBreakIterator.java,v $
* $Date: 2002/12/05 01:22:11 $
* $Revision: 1.23 $
* $Date: 2003/02/11 01:19:01 $
* $Revision: 1.24 $
*
*****************************************************************************************
*/
@ -225,12 +225,12 @@ import java.io.*;
* </tr>
*
* <p>For a more complete explanation, see <a
* href="http://www.ibm.com/developerworks/unicode/library/boundaries/boundaries.html">http://www.ibm.com/developerworks/unicode/library/boundaries/boundaries.html</a>.
* href="http://oss.software.ibm.com/icu/docs/papers/text_boundary_analysis_in_java/index.html">http://oss.software.ibm.com/icu/docs/papers/text_boundary_analysis_in_java/index.html</a>.
* &nbsp; For examples, see the resource data (which is annotated).</p>
*
* @author Richard Gillam
* @stable ICU 2.0
* $RCSfile: RuleBasedBreakIterator.java,v $ $Revision: 1.23 $ $Date: 2002/12/05 01:22:11 $
* $RCSfile: RuleBasedBreakIterator.java,v $ $Revision: 1.24 $ $Date: 2003/02/11 01:19:01 $
*/
public class RuleBasedBreakIterator extends BreakIterator {

View File

@ -5,8 +5,8 @@
*******************************************************************************
*
* $Source: /xsrl/Nsvn/icu/icu4j/src/com/ibm/icu/text/UTF16.java,v $
* $Date: 2002/12/11 02:09:05 $
* $Revision: 1.28 $
* $Date: 2003/02/11 01:19:01 $
* $Revision: 1.29 $
*
*******************************************************************************
*/
@ -174,7 +174,7 @@ public final class UTF16
* Used when iterating forwards or backwards (with
* <code>UTF16.getCharCount()</code>, as well as random access. If a
* validity check is required, use
* <code><a href="../UCharacter.html#isLegal(char)">
* <code><a href="../lang/UCharacter.html#isLegal(char)">
* UCharacter.isLegal()</a></code> on the return value.
* If the char retrieved is part of a surrogate pair, its supplementary
* character will be returned. If a complete supplementary character is
@ -236,7 +236,7 @@ public final class UTF16
* Used when iterating forwards or backwards (with
* <code>UTF16.getCharCount()</code>, as well as random access. If a
* validity check is required, use
* <code><a href="../UCharacter.html#isLegal(char)">UCharacter.isLegal()
* <code><a href="../lang/UCharacter.html#isLegal(char)">UCharacter.isLegal()
* </a></code> on the return value.
* If the char retrieved is part of a surrogate pair, its supplementary
* character will be returned. If a complete supplementary character is
@ -295,7 +295,7 @@ public final class UTF16
* Used when iterating forwards or backwards (with
* <code>UTF16.getCharCount()</code>, as well as random access. If a
* validity check is required, use
* <code><a href="../UCharacter.html#isLegal(char)">UCharacter.isLegal()
* <code><a href="../lang/UCharacter.html#isLegal(char)">UCharacter.isLegal()
* </a></code> on the return value.
* If the char retrieved is part of a surrogate pair, its supplementary
* character will be returned. If a complete supplementary character is
@ -354,7 +354,7 @@ public final class UTF16
* Used when iterating forwards or backwards (with
* <code>UTF16.getCharCount()</code>, as well as random access. If a
* validity check is required, use
* <code><a href="../UCharacter.html#isLegal(char)">UCharacter.isLegal()
* <code><a href="../lang/UCharacter.html#isLegal(char)">UCharacter.isLegal()
* </a></code> on the return value.
* If the char retrieved is part of a surrogate pair, its supplementary
* character will be returned. If a complete supplementary character is
@ -411,7 +411,7 @@ public final class UTF16
/**
* Determines how many chars this char32 requires.
* If a validity check is required, use <code>
* <a href="../UCharacter.html#isLegal(char)">isLegal()</a></code> on
* <a href="../lang/UCharacter.html#isLegal(char)">isLegal()</a></code> on
* char32 before calling.
* @param ch the input codepoint.
* @return 2 if is in supplementary space, otherwise 1.
@ -602,7 +602,7 @@ public final class UTF16
/**
* Returns the lead surrogate.
* If a validity check is required, use
* <code><a href="../UCharacter.html#isLegal(char)">isLegal()</a></code>
* <code><a href="../lang/UCharacter.html#isLegal(char)">isLegal()</a></code>
* on char32 before calling.
* @param char32 the input character.
* @return lead surrogate if the getCharCount(ch) is 2; <br>
@ -622,7 +622,7 @@ public final class UTF16
/**
* Returns the trail surrogate.
* If a validity check is required, use
* <code><a href="../UCharacter.html#isLegal(char)">isLegal()</a></code>
* <code><a href="../lang/UCharacter.html#isLegal(char)">isLegal()</a></code>
* on char32 before calling.
* @param char32 the input character.
* @return the trail surrogate if the getCharCount(ch) is 2; <br>otherwise
@ -643,7 +643,7 @@ public final class UTF16
* Convenience method corresponding to String.valueOf(char). Returns a one
* or two char string containing the UTF-32 value in UTF16 format. If a
* validity check is required, use
* <a href="../UCharacter.html#isLegal(char)">isLegal()</a></code> on
* <a href="../lang/UCharacter.html#isLegal(char)">isLegal()</a></code> on
* char32 before calling.
* @param char32 the input character.
* @return string value of char32 in UTF16 format
@ -666,7 +666,7 @@ public final class UTF16
* format. If offset16 indexes a surrogate character, the whole
* supplementary codepoint will be returned.
* If a validity check is required, use
* <a href="../UCharacter.html#isLegal(char)">isLegal()</a></code> on the
* <a href="../lang/UCharacter.html#isLegal(char)">isLegal()</a></code> on the
* codepoint at offset16 before calling.
* The result returned will be a newly created String obtained by calling
* source.substring(..) with the appropriate indexes.
@ -693,7 +693,7 @@ public final class UTF16
* format. If offset16 indexes a surrogate character, the whole
* supplementary codepoint will be returned.
* If a validity check is required, use
* <a href="../UCharacter.html#isLegal(char)">isLegal()</a></code> on the
* <a href="../lang/UCharacter.html#isLegal(char)">isLegal()</a></code> on the
* codepoint at offset16 before calling.
* The result returned will be a newly created String obtained by calling
* source.substring(..) with the appropriate indexes.
@ -722,7 +722,7 @@ public final class UTF16
* subarray. In the latter case, only the surrogate character within
* bounds will be returned.
* If a validity check is required, use
* <a href="../UCharacter.html#isLegal(char)">isLegal()</a></code> on the
* <a href="../lang/UCharacter.html#isLegal(char)">isLegal()</a></code> on the
* codepoint at offset16 before calling.
* The result returned will be a newly created String containing the
* relevant characters.
@ -1037,7 +1037,7 @@ public final class UTF16
/**
* Append a single UTF-32 value to the end of a StringBuffer.
* If a validity check is required, use
* <a href="../UCharacter.html#isLegal(char)">isLegal()</a></code> on
* <a href="../lang/UCharacter.html#isLegal(char)">isLegal()</a></code> on
* char32 before calling.
* @param char32 value to append.
* @return the updated StringBuffer