blob: 2ded4c7f714d5f447a8746759daaa9cc998a0869 [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);
}