| | |
| | | * information: "Portions Copyright [year] [name of copyright owner]". |
| | | * |
| | | * Copyright 2006-2008 Sun Microsystems, Inc. |
| | | * Portions Copyright 2014-2015 ForgeRock AS. |
| | | * Portions Copyright 2014-2016 ForgeRock AS. |
| | | */ |
| | | |
| | | package org.opends.quicksetup.ui; |
| | |
| | | * This class is a panel that contains an error message and a quit button. |
| | | * It is used for instance when we try to install Open DS but it is already |
| | | * installed. |
| | | * |
| | | */ |
| | | public class QuickSetupErrorPanel extends QuickSetupPanel |
| | | { |
| | |
| | | |
| | | ActionListener quitListener = new ActionListener() |
| | | { |
| | | @Override |
| | | public void actionPerformed(ActionEvent ev) |
| | | { |
| | | ButtonEvent be = new ButtonEvent(ev.getSource(), fQuitButtonName); |
| | |
| | | |
| | | ActionListener continueListener = new ActionListener() |
| | | { |
| | | @Override |
| | | public void actionPerformed(ActionEvent ev) |
| | | { |
| | | ButtonEvent be = new ButtonEvent(ev.getSource(), fContinueButtonName); |