Examples of addActionListener()


Examples of org.springframework.ide.eclipse.config.graph.figures.CollapsibleContainerFigure.addActionListener()

    if (part instanceof ActivityDiagramPart) {
      ActivityDiagramPart diagramPart = (ActivityDiagramPart) part;
      direction = diagramPart.getDirection();
    }
    CollapsibleContainerFigure figure = new CollapsibleContainerFigure(direction);
    figure.addActionListener(this);
    return figure;
  }

  @Override
  protected List<Activity> getModelChildren() {
View Full Code Here

Examples of org.w3c.tools.widgets.ImageButton.addActionListener()

  stop_im       = getIcon(pm, "stop");
  restart_im    = getIcon(pm, "restart");

  // Checkpoint
  ib = new ImageButton(checkpoint_im, CHECKPOINT_L);
  ib.addActionListener(cl);
  ib.addMouseListener(mbl);
  gbc.gridwidth = 1;
  gbl.setConstraints(ib, gbc);
  fspp.add(ib);   
  l = new Label(CHECKPOINT_L);
View Full Code Here

Examples of realcix20.guis.components.DetailList.addActionListener()

            } else if ( (column.getInputType() == 81) || (column.getInputType() == 82) ) {                    
                final DetailList detailList = (DetailList)component;
                detailList.setRelationManager(this);
                final Vector parameters = getParameters(componentExt);
                final String sql = getSQL(componentExt, parameters);
                detailList.addActionListener(
                    new ActionAdapter() {
                        public void actionPerformed(ActionEvent e) {

//                            System.err.println("81 = 82");
                            DAO dao = DAO.getInstance();
View Full Code Here

Examples of realcix20.guis.components.XrCalculator.addActionListener()

            if (column.getInputType() == 83) {
                final XrCalculator xrCalculator = (XrCalculator)component;
                xrCalculator.setRelationManager(this);
                final Vector parameters = getParameters(componentExt);
                final String sql = getSQL(componentExt, parameters);
                xrCalculator.addActionListener(
                    new ActionAdapter() {
                        public void actionPerformed(ActionEvent e) {

                            DAO dao = DAO.getInstance();
                            dao.query(sql);
View Full Code Here

Examples of shared.popupmenu.JStatusMenuItem.addActionListener()

                        }
                    });
                    menuItem = new JStatusMenuItem(Main.getString("menu_table_del"), Main.getString("statusbar_menutable_del_help"), m_statusBar);
                    menuItem.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_DELETE, 0));
                    menu.add(menuItem);
                    menuItem.addActionListener(new ActionListener()
                    {
                        public void actionPerformed (ActionEvent ev)
                        {
                            doDel(-1);
                        }
View Full Code Here

Examples of shared.popupmenu.JStatusRadioButtonMenuItem.addActionListener()

        int count = 0;
        for (LookAndFeelInfo lfInfo : lfArray)
        {
            radioButtonMenuItem = new JStatusRadioButtonMenuItem(lfInfo.getName(), String.format(Main.getString("statusbar_menu_extra_lf_help"), lfInfo.getName()), m_statusBar);
            radioButtonMenuItem.setActionCommand(lfInfo.getClassName());
            radioButtonMenuItem.addActionListener(new ActionListener()
            {
                public void actionPerformed(ActionEvent ev)
                {
                    try
                    {
View Full Code Here

Examples of swing.button.Button.addActionListener()

    return resetButton;
  }
 
  protected Button createResetButton() {
    Button temp = new Button(getFormResource("Button.Reset"));
    temp.addActionListener(new ActionListener() {
      public void actionPerformed(ActionEvent e) {
        reset();
      }
    });
   
View Full Code Here

Examples of swing.button.OpenFormButton.addActionListener()

    OpenFormButton temp = super.createUjButton();
    DolgozoForm form = new DolgozoForm(getLogin());
    temp.setForm(form);
    setForm(form);
    temp.setTipus(OpenFormButton.NORMAL);
    temp.addActionListener(new EventMulticaster(new ActionListener() {
        public void actionPerformed(ActionEvent e) {
          getForm().setTkod(getTkod());
        }
      },temp.getOpenListener()));
   
View Full Code Here

Examples of tvbrowser.ui.settings.util.LineButton.addActionListener()

      }
    });

    JButton addSeparator = new LineButton();
    addSeparator.setToolTipText(mLocalizer.msg("separator", "Add Separator"));
    addSeparator.addActionListener(new ActionListener() {
      public void actionPerformed(ActionEvent e) {
        int pos = mList.getList().getSelectedIndex();
        if (pos < 0) {
          pos = mList.getList().getModel().getSize();
        }
View Full Code Here

Examples of ua.vydai.chat.client.view.interfaces.ClientView.addActionListener()

    }
   
    public void createView(ClientViewFactory factory) {
        ClientView view = factory.createView(model);
        views.add(view);
        view.addActionListener(this);
        view.show();
    }
   
    private List<ClientView> views = new ArrayList<ClientView>();
    private ClientModel model;
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.