Will be called by the Tabris UI when a User presses the visual representation of this action.
117118119120121122123124125126127
@Override public void handleNotify( String event, JsonObject properties ) { if( event.equals( EVENT_SELECTION ) ) { Action action = descriptor.getAction(); action.execute( ui ); notifyActionListeners( action ); } } private void notifyActionListeners( Action action ) {
108109110111112113114115116117118
private final class ActionSelectionListener implements Listener { @Override public void handleEvent( Event event ) { Action action = descriptor.getAction(); action.execute( ui ); actionExecuted(); notifyActionListeners( action ); } }