Added an accessor for the underlying map.
git-svn-id: https://samskivert.googlecode.com/svn/trunk@2327 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
@@ -3,7 +3,7 @@
|
|||||||
//
|
//
|
||||||
// samskivert library - useful routines for java programs
|
// samskivert library - useful routines for java programs
|
||||||
// Copyright (C) 2001-2007 Michael Bayne
|
// Copyright (C) 2001-2007 Michael Bayne
|
||||||
//
|
//
|
||||||
// This library is free software; you can redistribute it and/or modify it
|
// This library is free software; you can redistribute it and/or modify it
|
||||||
// under the terms of the GNU Lesser General Public License as published
|
// under the terms of the GNU Lesser General Public License as published
|
||||||
// by the Free Software Foundation; either version 2.1 of the License, or
|
// by the Free Software Foundation; either version 2.1 of the License, or
|
||||||
@@ -45,6 +45,14 @@ public class SoftCache<K,V>
|
|||||||
_map = new HashMap<K,SoftReference<V>>();
|
_map = new HashMap<K,SoftReference<V>>();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns a reference to the underlying map.
|
||||||
|
*/
|
||||||
|
public Map<K,SoftReference<V>> getMap ()
|
||||||
|
{
|
||||||
|
return _map;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns true if the supplied key exists in this map and is mapped to an active value.
|
* Returns true if the supplied key exists in this map and is mapped to an active value.
|
||||||
*/
|
*/
|
||||||
|
|||||||
Reference in New Issue
Block a user