Uses of Class
org.eclipse.jdt.internal.core.util.LRUCache.LRUCacheEntry

Packages that use LRUCache.LRUCacheEntry
org.eclipse.jdt.internal.core.util   
 

Uses of LRUCache.LRUCacheEntry in org.eclipse.jdt.internal.core.util
 

Fields in org.eclipse.jdt.internal.core.util declared as LRUCache.LRUCacheEntry
protected  LRUCache.LRUCacheEntry LRUCache.entryQueue
          Start of queue (most recently used entry)
protected  LRUCache.LRUCacheEntry LRUCache.entryQueueTail
          End of queue (least recently used entry)
 LRUCache.LRUCacheEntry LRUCache.LRUCacheEntry.next
          Next entry in queue
 LRUCache.LRUCacheEntry LRUCache.LRUCacheEntry.previous
          Previous entry in queue
 

Methods in org.eclipse.jdt.internal.core.util with parameters of type LRUCache.LRUCacheEntry
protected  void LRUCache.privateAddEntry(LRUCache.LRUCacheEntry entry, boolean shuffle)
          Adds the given entry from the receiver.
protected  void LRUCache.privateRemoveEntry(LRUCache.LRUCacheEntry entry, boolean shuffle)
          Removes the entry from the entry queue.
protected  void LRUCache.updateTimestamp(LRUCache.LRUCacheEntry entry)
          Updates the timestamp for the given entry, ensuring that the queue is kept in correct order.