Introduction
These are other extensions of the event binding system. They are only valid for DomEvents.
@PreventDefault will call event.preventDefault(); @StopPropagation will call event.stopPropagation();
Example:
@ViewHandler
@PreventDefault
@StopPropagation
protected void addButton$click() {
placeManager.go(EditContactPresenter.class);
}