gnu.trove
Interface TLinkable
- Serializable
public interface TLinkable
extends Serializable
Interface for Objects which can be inserted into a TLinkedList.
Created: Sat Nov 10 15:23:41 2001
$Id: TLinkable.java,v 1.2 2001/12/03 00:16:25 ericdf Exp $ TLinkable | getNext() - Returns the linked list node after this one.
|
TLinkable | getPrevious() - Returns the linked list node before this one.
|
void | setNext(TLinkable linkable) - Sets the linked list node after this one.
|
void | setPrevious(TLinkable linkable) - Sets the linked list node before this one.
|
getNext
public TLinkable getNext()
Returns the linked list node after this one.
getPrevious
public TLinkable getPrevious()
Returns the linked list node before this one.
setNext
public void setNext(TLinkable linkable)
Sets the linked list node after this one.
linkable
- a TLinkable
value
setPrevious
public void setPrevious(TLinkable linkable)
Sets the linked list node before this one.
linkable
- a TLinkable
value
GNU Trove is copyright B) 2001-2007 Eric D. Friedman. All Rights Reserved.