Package com.eclipsesource.tabris.ui

Examples of com.eclipsesource.tabris.ui.Action


  }

  @Override
  public void handleNotify( String event, JsonObject properties ) {
    if( event.equals( EVENT_SELECTION ) ) {
      Action action = descriptor.getAction();
      action.execute( ui );
      notifyActionListeners( action );
    }
  }
View Full Code Here


  }

  private final class ActionSelectionListener implements Listener {
    @Override
    public void handleEvent( Event event ) {
      Action action = descriptor.getAction();
      action.execute( ui );
      actionExecuted();
      notifyActionListeners( action );
    }
View Full Code Here

  private ServerPushSession pushSession;

  public RemoteSearchAction( UI ui, RemoteUI uiRenderer, ActionDescriptor descriptor ) {
    super( ui, uiRenderer, descriptor );
    Action action = descriptor.getAction();
    ( ( Adaptable )action ).getAdapter( PropertyChangeNotifier.class ).setPropertyChangeHandler( this );
  }
View Full Code Here

  private final Listener textModifyListener;

  public WebSearchAction( UI ui, WebUI uiRenderer, ActionDescriptor descriptor ) {
    super( ui, uiRenderer, descriptor );
    textModifyListener = new TextModifyListener( this );
    Action action = descriptor.getAction();
    ( ( Adaptable )action ).getAdapter( PropertyChangeNotifier.class ).setPropertyChangeHandler( this );
  }
View Full Code Here

TOP

Related Classes of com.eclipsesource.tabris.ui.Action

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.