Package com.intellij.ui

Examples of com.intellij.ui.CommandButtonGroup


      JComponent.WHEN_IN_FOCUSED_WINDOW
    );
  }

  protected JComponent createSouthPanel() {
    final CommandButtonGroup panel = new CommandButtonGroup();
    panel.setBorder(BorderFactory.createEmptyBorder(8, 0, 0, 0));

    if (mySteps.size() > 1) {
      panel.addButton(myPreviousButton);
      panel.addButton(myNextButton);
    }
    panel.addButton(myFinishButton);
    panel.addButton(myCancelButton);
    panel.addButton(myHelpButton);

    myPreviousButton.setEnabled(false);
    myPreviousButton.addActionListener(new ActionListener() {
      public void actionPerformed(final ActionEvent e) {
        doPreviousAction();
View Full Code Here

TOP

Related Classes of com.intellij.ui.CommandButtonGroup

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.