blob: c3ab09bb2a24aa069972448565b352abd2552b49 [file] [log] [blame]
/*
***************************************************************************
* Copyright (c) 2007 International Business Macines Corporation and Others.
* All rights reserved.
***************************************************************************
*/
package com.ibm.icu.impl;
public interface ICUCache {
public static final Object NULL = new Object();
public void clear();
public void put(Object key, Object value);
public Object get(Object key);
}