public class LinkableImpl extends Object implements Linkable
| Modifier and Type | Field and Description |
|---|---|
private Linkable |
nextLink
Pointer to the next link in the chain
|
private EmbeddedList |
owner
The list that owns this item
|
private Linkable |
prevLink
Pointer to the previous link in the chain
|
| Constructor and Description |
|---|
LinkableImpl() |
| Modifier and Type | Method and Description |
|---|---|
Linkable |
getNext()
Get a reference to the next item in the chain
|
EmbeddedList |
getOwner()
Get a reference to the EmbeddedList that owns this object
|
Linkable |
getPrev()
Get a reference to the previous item in the chain
|
void |
setNext(Linkable l)
Assign the next item in the chain
|
void |
setOwner(EmbeddedList o)
Get a reference to the EmbeddedList that owns this object
|
void |
setPrev(Linkable l)
Assign the previous item in the chain
|
private Linkable nextLink
private Linkable prevLink
private EmbeddedList owner
public Linkable getNext()
Linkablepublic Linkable getPrev()
Linkablepublic EmbeddedList getOwner()
Linkablepublic void setNext(Linkable l)
Linkablepublic void setPrev(Linkable l)
Linkablepublic void setOwner(EmbeddedList o)
Linkable