ButtonName.java revision c9d984b0d2c0fda320e79eb3868dd6fbeb1ffa34
9N/A/*
9N/A * CDDL HEADER START
9N/A *
9N/A * The contents of this file are subject to the terms of the
9N/A * Common Development and Distribution License, Version 1.0 only
9N/A * (the "License"). You may not use this file except in compliance
9N/A * with the License.
9N/A *
9N/A * You can obtain a copy of the license at
9N/A * trunk/opends/resource/legal-notices/OpenDS.LICENSE
9N/A * or https://OpenDS.dev.java.net/OpenDS.LICENSE.
9N/A * See the License for the specific language governing permissions
9N/A * and limitations under the License.
9N/A *
9N/A * When distributing Covered Code, include this CDDL HEADER in each
9N/A * file and include the License file at
9N/A * trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable,
9N/A * add the following below this CDDL HEADER, with the fields enclosed
9N/A * by brackets "[]" replaced with your own identifying * information:
9N/A * Portions Copyright [yyyy] [name of copyright owner]
9N/A *
9N/A * CDDL HEADER END
9N/A *
9N/A *
9N/A * Portions Copyright 2006 Sun Microsystems, Inc.
16N/A */
16N/A
16N/Apackage org.opends.quicksetup;
16N/A
16N/A/**
16N/A * This enumeration defines the logical names of the buttons that appear on the
16N/A * bottom of the wizard dialog.
16N/A */
9N/Apublic enum ButtonName
16N/A{
16N/A /**
16N/A * The Next button.
16N/A */
16N/A NEXT,
16N/A /**
16N/A * The Previous button.
16N/A */
PREVIOUS,
/**
* The Quit button.
*/
QUIT,
/**
* The Close button.
*/
CLOSE,
/**
* The Finish button.
*/
FINISH,
/**
* The Cancel button.
*/
CANCEL
}