gnu.trove
Class TLinkableAdapter
java.lang.Object
gnu.trove.TLinkableAdapter
- TLinkable
public class TLinkableAdapter
extends java.lang.Object
implements TLinkable
Adapter for TLinkable interface which implements the interface and can
therefore be extended trivially to create TLinkable objects without
having to implement the obvious.
Created: Thurs Nov 15 16:25:00 2001
$Id: TLinkableAdapter.java,v 1.1 2006/11/10 23:27:56 robeden 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-2008 Eric D. Friedman. All Rights Reserved.