Interface UiActionNavigate
-
- All Superinterfaces:
io.github.mmm.event.EventListener<io.github.mmm.ui.api.event.UiEvent>
,io.github.mmm.ui.api.event.action.UiAction
,io.github.mmm.ui.api.event.UiEventListener
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface UiActionNavigate extends io.github.mmm.ui.api.event.action.UiAction
UiAction
for close.- Since:
- 1.0.0
-
-
Method Summary
All Methods Static Methods Instance Methods Default Methods Modifier and Type Method Description default String
getId()
static UiActionNavigate
of(UiPlace place)
static UiActionNavigate
ofId(String controllerId)
-
-
-
Field Detail
-
ACTION_ID
static final String ACTION_ID
- See Also:
getId()
, Constant Field Values
-
-
Method Detail
-
getId
default String getId()
- Specified by:
getId
in interfaceio.github.mmm.ui.api.event.action.UiAction
-
of
static UiActionNavigate of(UiPlace place)
- Parameters:
place
- theUiPlace
tonavigate to
.- Returns:
- the new
UiActionNavigate
.
-
ofId
static UiActionNavigate ofId(String controllerId)
- Parameters:
controllerId
- thecontroller ID
tonavigate to
.- Returns:
- the new
UiActionNavigate
.
-
-