Package org.zkoss.bind.annotation
Annotation Type HistoryPopState
-
@Documented @Target(METHOD) @Retention(RUNTIME) public @interface HistoryPopState
Marker annotation to identify a HistoryPopState method in View Model.
Only one (could be zero) HistoryPopState method is allowed in a particular class. A HistoryPopState method could also use withContextParam
to get theHistoryPopStateEvent
.
This annotation is for history state in ZK MVVM.
Example:
@HistoryPopState
public void method(@ContextParam(ContextType.TRIGGER_EVENT) HistoryPopStateEvent event)
- Since:
- 8.5.0
- Author:
- rudyhuang