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 UiNavigationNode
getNext()
UiPlace
getPlace()
UiNavigationNode
getPrevious()
void
setNext(UiNavigationNode next)
void
setPrevious(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
null
if 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
null
if this is the last node.
-
setNext
public void setNext(UiNavigationNode next)
- Parameters:
next
- new value ofgetNext()
.
-
-