001/*
002 * CDDL HEADER START
003 *
004 * The contents of this file are subject to the terms of the
005 * Common Development and Distribution License, Version 1.0 only
006 * (the "License").  You may not use this file except in compliance
007 * with the License.
008 *
009 * You can obtain a copy of the license at legal-notices/CDDLv1_0.txt
010 * or http://forgerock.org/license/CDDLv1.0.html.
011 * See the License for the specific language governing permissions
012 * and limitations under the License.
013 *
014 * When distributing Covered Code, include this CDDL HEADER in each
015 * file and include the License file at legal-notices/CDDLv1_0.txt.
016 * If applicable, add the following below this CDDL HEADER, with the
017 * fields enclosed by brackets "[]" replaced with your own identifying
018 * information:
019 *      Portions Copyright [yyyy] [name of copyright owner]
020 *
021 * CDDL HEADER END
022 *
023 *
024 *      Copyright 2006-2008 Sun Microsystems, Inc.
025 */
026
027package org.opends.quicksetup;
028
029/**
030 * This enumeration defines the logical names of the buttons that appear on the
031 * the wizard dialog.
032 */
033public enum ButtonName
034{
035  /**
036   * The Next button.
037   */
038  NEXT,
039  /**
040   * The Previous button.
041   */
042  PREVIOUS,
043  /**
044   * The Quit button.
045   */
046  QUIT,
047  /**
048   * The Continue with install button.
049   */
050  CONTINUE_INSTALL,
051  /**
052   * The Close button.
053   */
054  CLOSE,
055  /**
056   * The Finish button.
057   */
058  FINISH,
059  /**
060   * The Launch Status Panel button.
061   */
062  LAUNCH_STATUS_PANEL,
063  /**
064   * Input panel button.  This is used to identify generic buttons inside
065   * the panels and the notifications are used for instance to update the
066   * visibility of the steps on the right.
067   */
068  INPUT_PANEL_BUTTON
069}