Class AbstractLinkedListSetEntry<E extends LinkedListSetEntry<E,O>,O>
- java.lang.Object
-
- net.officefloor.frame.impl.execute.linkedlistset.AbstractLinkedListSetEntry<E,O>
-
- All Implemented Interfaces:
LinkedListSetEntry<E,O>
- Direct Known Subclasses:
AbstractDelegateFunctionState,AbstractFunctionState,AssetLatchImpl,AssetManagerImpl,FlowImpl,ManagedFunctionContainerImpl,ThreadProfilerImpl,ThreadStateImpl
public abstract class AbstractLinkedListSetEntry<E extends LinkedListSetEntry<E,O>,O> extends java.lang.Object implements LinkedListSetEntry<E,O>
AbstractLinkedListSetEntry.- Author:
- Daniel Sagenschneider
-
-
Constructor Summary
Constructors Constructor Description AbstractLinkedListSetEntry()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description EgetNext()Obtains the nextLinkedListSetEntryin theLinkedListSet.EgetPrev()Obtains the previousLinkedListSetEntryin theLinkedListSet.voidsetNext(E entry)Specifies the nextLinkedListSetEntryin theLinkedListSet.voidsetPrev(E entry)Specifies the previousLinkedListSetEntryin theLinkedListSet.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface net.officefloor.frame.internal.structure.LinkedListSetEntry
getLinkedListSetOwner
-
-
-
-
Method Detail
-
getPrev
public final E getPrev()
Description copied from interface:LinkedListSetEntryObtains the previous
LinkedListSetEntryin theLinkedListSet.Should this
LinkedListSetEntrynot be in aLinkedListSetthen this must returnnull.- Specified by:
getPrevin interfaceLinkedListSetEntry<E extends LinkedListSetEntry<E,O>,O>- Returns:
- Previous
LinkedListSetEntryin theLinkedListSet.
-
setPrev
public final void setPrev(E entry)
Description copied from interface:LinkedListSetEntrySpecifies the previousLinkedListSetEntryin theLinkedListSet.- Specified by:
setPrevin interfaceLinkedListSetEntry<E extends LinkedListSetEntry<E,O>,O>- Parameters:
entry- PreviousLinkedListSetEntryin theLinkedListSet.
-
getNext
public final E getNext()
Description copied from interface:LinkedListSetEntryObtains the next
LinkedListSetEntryin theLinkedListSet.Should this
LinkedListSetEntrynot be in aLinkedListSetthen this must returnnull.- Specified by:
getNextin interfaceLinkedListSetEntry<E extends LinkedListSetEntry<E,O>,O>- Returns:
- Next
LinkedListSetEntryin theLinkedListSet.
-
setNext
public final void setNext(E entry)
Description copied from interface:LinkedListSetEntrySpecifies the nextLinkedListSetEntryin theLinkedListSet.- Specified by:
setNextin interfaceLinkedListSetEntry<E extends LinkedListSetEntry<E,O>,O>- Parameters:
entry- NextLinkedListSetEntryin theLinkedListSet.
-
-