KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > java > lang > ref > SoftReference > Top Examples

  • org.apache.batik.bridge.BridgeContext
    This class represents a context used by the various bridges and the builder. A bridge context is associated to a particular document and cannot be reused. The context encapsulates the dynamic bindings between DOM elements and GVT nodes, graphic contexts such as a <tt>GraphicsNodeRenderConte ...
  • org.eclipse.jdi.internal.ValueCache
    This class is used to cache values. It uses soft references to store cached values. Once a value is garbage collected by the VM, the corresponding entry is removed from the cache on the next invocation of put() or get(). Note that WeakHashMap can't be used for this purpose because in WeakHashMap ...
  • net.nutch.util.SoftHashMap
    A Map which uses {@link SoftReference}s to keep track of values. <p> This class is suitable for use as a best-effort caching mechanism. Under the hood, it is simply a {@link HashMap}, which wraps it's values with SoftReference</code>s. Unlike <code>HashMap</code>, howeve ...
  • org.eclipse.core.internal.registry.RegistryObjectManager
    This class manage all the object from the registry but does not deal with their dependencies. It serves the objects which are either directly obtained from memory or read from a cache. It also returns handles for objects.
  • org.eclipse.core.internal.registry.FlushableExtension
  • org.jboss.aop.util.SoftValueHashMap
    This Map will remove entries when the value in the map has been cleaned from garbage collection @version <tt>$Revision: 1.1 $</tt> @author <a HREF="mailto:bill@jboss.org">Bill Burke</a>
  • org.eclipse.core.internal.content.ContentTypeHandler
    The only content types exposed to clients. Allows the content type registry to change underneath preserving handlers kept by clients.
  • com.jcorporate.expresso.core.misc.URLUTF8Encoder
    Provides a method to encode any string into a URL-safe form, the so-called "x-www-form-urlencoded" form. Non-ASCII characters are first encoded as sequences of two or three bytes, using the UTF-8 algorithm, before being encoded in "x-www-form-urlencoded".
  • freemarker.cache.SoftCacheStorage
    Strong cache storage is a cache storage that uses {@link SoftReference} objects to hold the objects it was passed, therefore allows the garbage collector to purge the cache when it determines that it wants to free up memory. This class is <em>NOT</em> thread-safe. If it is accessed fro ...
  • org.jboss.mx.remoting.JMXSubsystemInvocationHandler
    JMXSubsystemInvocationHandler is a ServerInvocationHandler that will forward requests to the MBeanServer and return the results from the MBeanServer. @author <a HREF="mailto:jhaynie@vocalocity.net">Jeff Haynie</a> @version $Revision: 1.3 $
Popular Tags