ICU-2585 mark @deprecated ICU 2.4
X-SVN-Rev: 10730
This commit is contained in:
parent
bbc9aaaaf7
commit
694a886567
icu4j/src/com/ibm/icu/util
@ -5,8 +5,8 @@
|
||||
*******************************************************************************
|
||||
*
|
||||
* $Source: /xsrl/Nsvn/icu/icu4j/src/com/ibm/icu/util/Attic/CalendarCache.java,v $
|
||||
* $Date: 2002/12/04 16:38:52 $
|
||||
* $Revision: 1.6 $
|
||||
* $Date: 2002/12/18 19:24:15 $
|
||||
* $Revision: 1.7 $
|
||||
*
|
||||
*****************************************************************************************
|
||||
*/
|
||||
@ -14,11 +14,13 @@ package com.ibm.icu.util;
|
||||
|
||||
/**
|
||||
* @internal
|
||||
* @deprecated ICU 2.4. This class may be removed or modified.
|
||||
*/
|
||||
public class CalendarCache
|
||||
{
|
||||
/**
|
||||
* @internal
|
||||
* @deprecated ICU 2.4. This class may be removed or modified.
|
||||
*/
|
||||
public CalendarCache() {
|
||||
makeArrays(arraySize);
|
||||
@ -38,6 +40,7 @@ public class CalendarCache
|
||||
|
||||
/**
|
||||
* @internal
|
||||
* @deprecated ICU 2.4. This class may be removed or modified.
|
||||
*/
|
||||
public synchronized long get(long key) {
|
||||
return values[findIndex(key)];
|
||||
@ -45,6 +48,7 @@ public class CalendarCache
|
||||
|
||||
/**
|
||||
* @internal
|
||||
* @deprecated ICU 2.4. This class may be removed or modified.
|
||||
*/
|
||||
public synchronized void put(long key, long value)
|
||||
{
|
||||
@ -128,6 +132,7 @@ public class CalendarCache
|
||||
|
||||
/**
|
||||
* @internal
|
||||
* @deprecated ICU 2.4. This class may be removed or modified.
|
||||
*/
|
||||
static public long EMPTY = Long.MIN_VALUE;
|
||||
}
|
||||
|
@ -5,8 +5,8 @@
|
||||
*******************************************************************************
|
||||
*
|
||||
* $Source: /xsrl/Nsvn/icu/icu4j/src/com/ibm/icu/util/OverlayBundle.java,v $
|
||||
* $Date: 2002/12/04 16:38:52 $
|
||||
* $Revision: 1.6 $
|
||||
* $Date: 2002/12/18 19:24:15 $
|
||||
* $Revision: 1.7 $
|
||||
*
|
||||
*******************************************************************************
|
||||
*/
|
||||
@ -63,6 +63,7 @@ import java.util.*;
|
||||
* @see java.util.ResourceBundle
|
||||
* @author Alan Liu
|
||||
* @internal
|
||||
* @deprecated ICU 2.4. This class may be removed or modified.
|
||||
*/
|
||||
// prepare to deprecate in next release
|
||||
///CLOVER:OFF
|
||||
@ -89,6 +90,7 @@ public class OverlayBundle extends ResourceBundle {
|
||||
* Construct an overlay bundle given a sequence of base names and
|
||||
* a locale.
|
||||
* @internal
|
||||
* @deprecated ICU 2.4. This class may be removed or modified.
|
||||
*/
|
||||
public OverlayBundle(String[] baseNames,
|
||||
Locale locale) {
|
||||
@ -101,6 +103,7 @@ public class OverlayBundle extends ResourceBundle {
|
||||
* ResourceBundle framework method. Delegates to
|
||||
* bundles[i].getObject().
|
||||
* @internal
|
||||
* @deprecated ICU 2.4. This class may be removed or modified.
|
||||
*/
|
||||
protected Object handleGetObject(String key)
|
||||
throws MissingResourceException {
|
||||
@ -128,6 +131,7 @@ public class OverlayBundle extends ResourceBundle {
|
||||
* ResourceBundle framework method. Delegates to
|
||||
* bundles[bundles.length-1].getKeys().
|
||||
* @internal
|
||||
* @deprecated ICU 2.4. This class may be removed or modified.
|
||||
*/
|
||||
public Enumeration getKeys() {
|
||||
// Return the enumeration of the last bundle, which is the base
|
||||
|
Loading…
Reference in New Issue
Block a user