Skip to main content
summaryrefslogtreecommitdiffstats
blob: 4e56788ecf0c43e7ca64752c1f26ab2866378ab3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/*******************************************************************************
 * Copyright (c) 2001, 2004 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.wst.command.internal.env.ui.dialog;

/**
* Constants for status dialogs
*/
public interface StatusDialogConstants {

  /*
  * Button ID for the "Yes" button
  */
  public static final int YES_ID = 2;
  /*
  * Button ID for the "Yes to all" button
  */
  public static final int YES_TO_ALL_ID = 4;
  /*
  * Button ID for the "Cancel" button
  */
  public static final int CANCEL_ID = 1;
  /*
  * Button ID for the "OK" button
  */
  public static final int OK_ID = 0;
  /*
  * Button ID for the "Details" button
  */
  public static final int DETAILS_ID = 13;

  /*
  * Button label for the "Yes" button
  */
 // public static final String YES_LABEL = EnvironmentPlugin.getInstance().getMessage("%STATUS_DIALOG_YES_LABEL");
  /*
  * Button label for the "Yes to all" button
  */
 // public static final String YES_TO_ALL_LABEL = EnvironmentPlugin.getInstance().getMessage("%STATUS_DIALOG_YES_TO_ALL_LABEL");
  /*
  * Button label for the "Cancel" button
  */
 // public static final String CANCEL_LABEL = EnvironmentPlugin.getInstance().getMessage("%STATUS_DIALOG_CANCEL_LABEL");
}

Back to the top