| | |
| | | launchStatusPanelClicked(); |
| | | break; |
| | | |
| | | case INPUT_PANEL_BUTTON: |
| | | inputPanelButtonClicked(); |
| | | break; |
| | | |
| | | default: |
| | | throw new IllegalArgumentException("Unknown button name: " |
| | | + ev.getButtonName()); |
| | |
| | | } |
| | | |
| | | /** |
| | | * This method tries to update the visibility of the steps panel. The |
| | | * contents are updated because the user clicked in one of the buttons |
| | | * that could make the steps panel to change. |
| | | * |
| | | */ |
| | | private void inputPanelButtonClicked() |
| | | { |
| | | getDialog().getStepsPanel().updateStepVisibility(this); |
| | | } |
| | | |
| | | /** |
| | | * Method called when we want to quit the setup (for instance when the user |
| | | * clicks on 'Close' or 'Quit' buttons and has confirmed that (s)he wants to |
| | | * quit the program. |