public interface Linkable
EmbeddedList
must implement this
interface. For an easy way to do so, extend the LinkableImpl
class instead.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
|
Linkable getNext()
Linkable getPrev()
EmbeddedList getOwner()
void setNext(Linkable l)
void setPrev(Linkable l)
void setOwner(EmbeddedList o)