Description
Following the pattern introduced in ISIS-1252 for the XxxUiEvents.
Thus, to disable an event being fired for an action, use:
@Action(domainEvent=ActionDomainEvent.Noop.class)
public void someAction() { ... }
Note though that to avoid breaking backward compatibility the default for the annotation attribute is still "ActionDomainEvent.Default.class", meaning that:
@Action
public void someAction() { ... }
will (still) cause an event to be fired.
~~~
We will probably make Noop the default in 2.0.