Uses of Interface
org.apache.commons.cache.adt.Listable

Packages that use Listable
org.apache.commons.cache.adt   
 

Uses of Listable in org.apache.commons.cache.adt
 

Classes in org.apache.commons.cache.adt that implement Listable
 class ListableBase
          An base implementation of Listable, supporting singly-linked lists.
 class ListableObject
          A simple Listable supporting singly-linked lists of arbitrary Objects.
 class WListableBase
          An base implementation of Listable, supporting doubly-linked lists.
 class WListableObject
          A simple Listable supporting doubly-linked lists of arbitrary Objects.
 

Fields in org.apache.commons.cache.adt declared as Listable
protected  Listable ListableBase._next
          My following sibling.
protected  Listable WListableBase._prev
          My preceeding sibling.
 

Methods in org.apache.commons.cache.adt that return Listable
 Listable ListableBase.getNext()
           
 Listable Listable.getNext()
          Return the Listable element following me, or null if I am the last element in the list.
 Listable WListableBase.getPrev()
           
 Listable ListableBase.getPrev()
          Throws UnsupportedOperationException.
 Listable Listable.getPrev()
          Return the Listable element preceeding me, or null if I am the last element in the list.
 

Methods in org.apache.commons.cache.adt with parameters of type Listable
 void ListableBase.setNext(Listable next)
           
 void Listable.setNext(Listable next)
          Change my next element to next.
 void WListableBase.setPrev(Listable prev)
           
 void ListableBase.setPrev(Listable prev)
          Throws UnsupportedOperationException.
 void Listable.setPrev(Listable prev)
          Change my preceeding element to prev.
 

Constructors in org.apache.commons.cache.adt with parameters of type Listable
ListableBase(Listable next)
          Constructor.
ListableObject(Object val, Listable next)
           
WListableBase(Listable prev, Listable next)
          Constructor.
WListableObject(Object val, Listable prev, Listable next)
           
 



Copyright © 2001-2010 The Apache Software Foundation. All Rights Reserved.