diff --git a/icu4j/src/com/ibm/icu/text/SymbolTable.java b/icu4j/src/com/ibm/icu/text/SymbolTable.java index 0676d7346b2..91b2991e4fa 100755 --- a/icu4j/src/com/ibm/icu/text/SymbolTable.java +++ b/icu4j/src/com/ibm/icu/text/SymbolTable.java @@ -5,8 +5,8 @@ ******************************************************************************* * * $Source: /xsrl/Nsvn/icu/icu4j/src/com/ibm/icu/text/SymbolTable.java,v $ - * $Date: 2003/09/24 23:38:49 $ - * $Revision: 1.12 $ + * $Date: 2003/11/22 01:07:24 $ + * $Revision: 1.13 $ * ***************************************************************************************** */ @@ -42,6 +42,7 @@ public interface SymbolTable { /** * The character preceding a symbol reference name. + * @draft ICU 2.8 */ static final char SYMBOL_REF = '$'; @@ -52,6 +53,7 @@ public interface SymbolTable { * @param s the symbolic name to lookup * @return a char array containing the name's value, or null if * there is no mapping for s. + * @draft ICU 2.8 */ char[] lookup(String s); @@ -61,6 +63,7 @@ public interface SymbolTable { * @param ch a 32-bit code point from 0 to 0x10FFFF inclusive. * @return the UnicodeMatcher object represented by the given * character, or null if there is no mapping for ch. + * @draft ICU 2.8 */ UnicodeMatcher lookupMatcher(int ch); @@ -79,6 +82,7 @@ public interface SymbolTable { * @param limit the index after the last character to be parsed. * @return the parsed name, or null if there is no valid symbolic * name at the given position. + * @draft ICU 2.8 */ String parseReference(String text, ParsePosition pos, int limit); } diff --git a/icu4j/src/com/ibm/icu/text/Transliterator.java b/icu4j/src/com/ibm/icu/text/Transliterator.java index f7579db408d..a3407ddc191 100755 --- a/icu4j/src/com/ibm/icu/text/Transliterator.java +++ b/icu4j/src/com/ibm/icu/text/Transliterator.java @@ -5,8 +5,8 @@ ******************************************************************************* * * $Source: /xsrl/Nsvn/icu/icu4j/src/com/ibm/icu/text/Transliterator.java,v $ - * $Date: 2003/06/03 18:49:35 $ - * $Revision: 1.91 $ + * $Date: 2003/11/22 01:07:24 $ + * $Revision: 1.92 $ * ***************************************************************************************** */ @@ -1486,7 +1486,7 @@ public abstract class Transliterator { * use by tests, tools, or utilities. * @see #getTargetSet * @see #handleGetSourceSet - * @draft ICU 2.2 + * @stable ICU 2.2 */ public final UnicodeSet getSourceSet() { UnicodeSet set = handleGetSourceSet(); @@ -1516,7 +1516,7 @@ public abstract class Transliterator { * newly-created object. * @see #getSourceSet * @see #getTargetSet - * @draft ICU 2.2 + * @stable ICU 2.2 */ protected UnicodeSet handleGetSourceSet() { return new UnicodeSet(); @@ -1531,7 +1531,7 @@ public abstract class Transliterator { * use by tests, tools, or utilities requiring such * meta-information. * @see #getTargetSet - * @draft ICU 2.2 + * @stable ICU 2.2 */ public UnicodeSet getTargetSet() { return new UnicodeSet(); @@ -1594,7 +1594,7 @@ public abstract class Transliterator { * Register a Transliterator object with the given ID. * @param ID the ID of this transliterator * @param trans the Transliterator object - * @draft ICU 2.2 + * @stable ICU 2.2 */ public static void registerInstance(Transliterator trans) { registry.put(trans.getID(), trans, true); diff --git a/icu4j/src/com/ibm/icu/text/UFormat.java b/icu4j/src/com/ibm/icu/text/UFormat.java index 5cb4ef89c15..5089872e0ee 100644 --- a/icu4j/src/com/ibm/icu/text/UFormat.java +++ b/icu4j/src/com/ibm/icu/text/UFormat.java @@ -5,8 +5,8 @@ ******************************************************************************* * * $Source: /xsrl/Nsvn/icu/icu4j/src/com/ibm/icu/text/UFormat.java,v $ - * $Date: 2003/11/21 00:16:34 $ - * $Revision: 1.2 $ + * $Date: 2003/11/22 01:05:45 $ + * $Revision: 1.3 $ * ******************************************************************************* */ @@ -22,7 +22,12 @@ import com.ibm.icu.util.ULocale; * @draft ICU 2.8 */ public abstract class UFormat extends Format { - /** + /** + * @draft ICU 2.8 + */ + public UFormat() {} + + /** * Return the locale used by the format object depending on the type * * @param type The type fo the locale that should returned. @@ -31,6 +36,6 @@ public abstract class UFormat extends Format { * @see ULocale * @draft ICU 2.8 */ - public abstract ULocale getLocale(ULocale.ULocaleDataType type); + public abstract ULocale getLocale(ULocale.ULocaleDataType type); } diff --git a/icu4j/src/com/ibm/icu/text/UnicodeMatcher.java b/icu4j/src/com/ibm/icu/text/UnicodeMatcher.java index 4e8f6b05fcf..bb2602bae4a 100755 --- a/icu4j/src/com/ibm/icu/text/UnicodeMatcher.java +++ b/icu4j/src/com/ibm/icu/text/UnicodeMatcher.java @@ -5,8 +5,8 @@ ******************************************************************************* * * $Source: /xsrl/Nsvn/icu/icu4j/src/com/ibm/icu/text/UnicodeMatcher.java,v $ - * $Date: 2003/06/03 18:49:35 $ - * $Revision: 1.11 $ + * $Date: 2003/11/22 01:05:45 $ + * $Revision: 1.12 $ * ***************************************************************************************** */ @@ -136,7 +136,7 @@ public interface UnicodeMatcher { * Union the set of all characters that may be matched by this object * into the given set. * @param toUnionTo the set into which to union the source characters - * @draft ICU 2.2 + * @stable ICU 2.2 */ public abstract void addMatchSetTo(UnicodeSet toUnionTo); } diff --git a/icu4j/src/com/ibm/icu/text/UnicodeSet.java b/icu4j/src/com/ibm/icu/text/UnicodeSet.java index 0a694047ac2..359a39a4114 100755 --- a/icu4j/src/com/ibm/icu/text/UnicodeSet.java +++ b/icu4j/src/com/ibm/icu/text/UnicodeSet.java @@ -5,8 +5,8 @@ ******************************************************************************* * * $Source: /xsrl/Nsvn/icu/icu4j/src/com/ibm/icu/text/UnicodeSet.java,v $ - * $Date: 2003/11/21 22:43:40 $ - * $Revision: 1.102 $ + * $Date: 2003/11/22 01:05:45 $ + * $Revision: 1.103 $ * ***************************************************************************************** */ @@ -878,7 +878,7 @@ public class UnicodeSet extends UnicodeFilter { * characters that may be matched by this object into the given * set. * @param toUnionTo the set into which to union the source characters - * @stable + * @stable ICU 2.2 */ public void addMatchSetTo(UnicodeSet toUnionTo) { toUnionTo.addAll(this); @@ -2340,8 +2340,13 @@ public class UnicodeSet extends UnicodeFilter { /** * Add the contents of the collection (as strings) into this UnicodeSet. +<<<<<<< UnicodeSet.java + * @param source the collection to add + * @draft ICU 2.8 +======= * @param source * @draft ICU 2.8 +>>>>>>> 1.102 */ public void addAll(Collection source) { Iterator it = source.iterator(); diff --git a/icu4j/src/com/ibm/icu/util/TimeZone.java b/icu4j/src/com/ibm/icu/util/TimeZone.java index 1042c718afb..0bf5a954dfc 100755 --- a/icu4j/src/com/ibm/icu/util/TimeZone.java +++ b/icu4j/src/com/ibm/icu/util/TimeZone.java @@ -74,6 +74,7 @@ abstract public class TimeZone implements Serializable, Cloneable { /** * Default constructor. (For invocation by subclass constructors, * typically implicit.) + * @draft ICU 2.8 */ public TimeZone() { }