X-Git-Url: http://wamblee.org/gitweb/?a=blobdiff_plain;f=support%2Fsrc%2Forg%2Fwamblee%2Fcache%2FForeverCache.java;h=fe607aac1a4d908d8c5d5409edcedc34fe417888;hb=14df90d103ad9292137c4a250a01a257c2a3fe17;hp=58b34dc8992472e43a8cb4d1544c2c748b85893b;hpb=caa126385642ffc57478e928ab871bc09c53e993;p=utils diff --git a/support/src/org/wamblee/cache/ForeverCache.java b/support/src/org/wamblee/cache/ForeverCache.java index 58b34dc8..fe607aac 100644 --- a/support/src/org/wamblee/cache/ForeverCache.java +++ b/support/src/org/wamblee/cache/ForeverCache.java @@ -12,7 +12,7 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - */ + */ package org.wamblee.cache; @@ -20,47 +20,55 @@ import java.io.Serializable; import java.util.HashMap; /** - * A very simple cache based on a HashMap, - * It never expires any entries, and has no bounds on its size. + * A very simple cache based on a HashMap, It never expires any entries, and has + * no bounds on its size. */ -public class ForeverCache - implements Cache { +public class ForeverCache + implements Cache { /** - * Cached entries. + * Cached entries. */ - private HashMap _map; - + private HashMap _map; + /** - * Constructs the cache. - * + * Constructs the cache. + * */ - public ForeverCache() { - _map = new HashMap(); + public ForeverCache() { + _map = new HashMap(); } - - /* (non-Javadoc) + + /* + * (non-Javadoc) + * * @see org.wamblee.cache.Cache#put(KeyType, ValueType) */ public synchronized void put(KeyType aKey, ValueType aValue) { - _map.put(aKey, aValue); + _map.put(aKey, aValue); } - - /* (non-Javadoc) + + /* + * (non-Javadoc) + * * @see org.wamblee.cache.Cache#get(KeyType) */ public synchronized ValueType get(KeyType aKey) { return _map.get(aKey); } - - /* (non-Javadoc) + + /* + * (non-Javadoc) + * * @see org.wamblee.cache.Cache#remove(KeyType) */ public synchronized void remove(KeyType aKey) { _map.remove(aKey); } - - /* (non-Javadoc) + + /* + * (non-Javadoc) + * * @see org.wamblee.cache.Cache#clear() */ public synchronized void clear() {