ICU-3348 update tags

X-SVN-Rev: 13823
This commit is contained in:
Doug Felt 2003-11-22 01:07:24 +00:00
parent 19c5a7a2e7
commit 3a0f6c89e1
6 changed files with 33 additions and 18 deletions

View file

@ -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);
}

View file

@ -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);

View file

@ -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);
}

View file

@ -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);
}

View file

@ -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();

View file

@ -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() {
}