Examples of actionPerformed()


Examples of aleph.Listener.actionPerformed()

   * Called by notifyMessage.
   **/
  void notifyHandler(UniqueID id, Vector history) {
    Listener listener = (Listener) listenerTable.get(id);
    for (Enumeration enm = history.elements(); enm.hasMoreElements();)
      listener.actionPerformed(enm.nextElement());
  }
    
  /**
   * Message: client PE -> home PE.  I'm interested in this event.
   **/
 
View Full Code Here

Examples of charva.awt.event.ActionListener.actionPerformed()

  if (_actionListeners != null) {
      for (Enumeration<ActionListener> e = _actionListeners.elements();
        e.hasMoreElements(); ) {

    ActionListener al = (ActionListener) e.nextElement();
    al.actionPerformed(ae_);
      }
  }
    }

    /**
 
View Full Code Here

Examples of charva.awt.event.ActionListener.actionPerformed()

  if (_actionListeners != null) {
      for (Enumeration<ActionListener> e = _actionListeners.elements();
        e.hasMoreElements(); ) {

    ActionListener al = (ActionListener) e.nextElement();
    al.actionPerformed(ae_);
      }
  }
    }

    /**
 
View Full Code Here

Examples of com.intellij.openapi.actionSystem.AnAction.actionPerformed()

                0);
        action.beforeActionPerformedUpdate(event);
        action.update(event);

        if (event.getPresentation().isEnabled() && event.getPresentation().isVisible()) {
            action.actionPerformed(event);
        }
    }

    @Override
    public Dimension getMinimumSize() {
View Full Code Here

Examples of com.intellij.openapi.editor.actionSystem.TypedAction.actionPerformed()

  void doCharTest(final char charToType, @NotNull String before, @NotNull String expected) {
    final TypedAction typedAction = EditorActionManager.getInstance().getTypedAction();
    doExecuteActionTest(before, expected, new Runnable() {
      @Override
      public void run() {
        typedAction.actionPerformed(myFixture.getEditor(), charToType, ((EditorEx)myFixture.getEditor()).getDataContext());
      }
    });
  }

  /**
 
View Full Code Here

Examples of com.intellij.testIntegration.GotoTestOrCodeAction.actionPerformed()

            goToFlexUnitTestOrCodeAction(e);
        }
        else{
            //hack: do the old gotoTest if it's not a JS file.
            final GotoTestOrCodeAction gotoTestOrCodeAction = new GotoTestOrCodeAction();
            gotoTestOrCodeAction.actionPerformed(e);
        }
    }

    private void goToFlexUnitTestOrCodeAction(AnActionEvent e){
        final Module module = e.getData(DataKeys.MODULE);
View Full Code Here

Examples of com.salas.bb.twitter.ReplyAction.actionPerformed()

        {
            protected void doAction()
            {
                ReplyAction action = (ReplyAction)ActionManager.get(ActionsTable.CMD_TWITTER_REPLY);
                action.setUserURL(lnReply.getLink());
                action.actionPerformed(null);
            }
        };
        lnReply.setForeground(LinkLabel.HIGHLIGHT_COLOR);

        spinner = new ProgressSpinner();
View Full Code Here

Examples of com.sun.dtv.lwuit.events.ActionListener.actionPerformed()

    void fireActionEvent() {
        if (actionListeners != null) {
            ActionEvent evt = new ActionEvent(this);
            for (int iter = 0; iter < actionListeners.size(); iter++) {
                ActionListener a = (ActionListener) actionListeners.elementAt(iter);
                a.actionPerformed(evt);
            }
        }
    }

    /**
 
View Full Code Here

Examples of de.tudresden.inf.tcs.fcalib.action.ChangeAttributeOrderAction.actionPerformed()

    stop.setViewComponent(getViewComponent());
    stop.actionPerformed(e);
    // change the order of attributes
    ChangeAttributeOrderAction changeOrder = new ChangeAttributeOrderAction();
    changeOrder.setContext(getViewComponent().getContext());
    changeOrder.actionPerformed(e);
    getViewComponent().changeGUIState(Constants.QUESTION_SKIPPED);
    logger.info("Attributes after: " + getViewComponent().getContext().getAttributes());
    // resume completion
    // StartCompletionUIAction start = new StartCompletionUIAction();
    // start.setViewComponent(getViewComponent());
View Full Code Here

Examples of es.emergya.ui.base.ExitHandler.actionPerformed()

  @Override
  public void mouseClicked(MouseEvent e) {
    if (PluggableJTabbedPane.this.salir.contains(e.getPoint())) {
      ExitHandler eh = new ExitHandler();
      eh.actionPerformed(null);
    }
  }

  @Override
  public void mouseEntered(MouseEvent e) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.