Package io.github.mmm.ui.spi.controller
Class UiNavigationNode
- java.lang.Object
-
- io.github.mmm.ui.spi.controller.UiNavigationNode
-
-
Constructor Summary
Constructors Constructor Description UiNavigationNode(UiPlace value)The constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description UiNavigationNodegetNext()UiPlacegetPlace()UiNavigationNodegetPrevious()voidsetNext(UiNavigationNode next)voidsetPrevious(UiNavigationNode previous)
-
-
-
Method Detail
-
getPlace
public UiPlace getPlace()
- Returns:
- the value (element) stored in this
UiNavigationNode.
-
getPrevious
public UiNavigationNode getPrevious()
- Returns:
- the previous node. Will be
nullif this is the first node.
-
setPrevious
public void setPrevious(UiNavigationNode previous)
- Parameters:
previous- new value ofgetPrevious().
-
getNext
public UiNavigationNode getNext()
- Returns:
- the next node. Will be
nullif this is the last node.
-
setNext
public void setNext(UiNavigationNode next)
- Parameters:
next- new value ofgetNext().
-
-