Package org.eclipse.jface.dialogs
Interface IDialogLabelKeys
-
public interface IDialogLabelKeysIDialogLabelKeys contains publicly accessible keys to the common dialog labels used throughout JFace.IDialogConstantsprovides access to these labels using static constants. This is the preferred method when the client is optimizing for performance and is known to be used in a single-locale system. Using the keys and accessing the common dialog labels dynamically is the preferred method when the client may be running in a multi-locale system.- Since:
- 3.7
- See Also:
IDialogConstants- Restriction:
- This interface is not intended to be implemented by clients.
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringABORT_LABEL_KEYThe key used to retrieve the label for abort buttons.static java.lang.StringBACK_LABEL_KEYThe key used to retrieve the label for back buttons.static java.lang.StringCANCEL_LABEL_KEYThe key used to retrieve the label for cancel buttons.static java.lang.StringCLOSE_LABEL_KEYThe key used to retrieve the label for close buttons.static java.lang.StringFINISH_LABEL_KEYThe key used to retrieve the label for finish buttons.static java.lang.StringHELP_LABEL_KEYThe key used to retrieve the label for help buttons.static java.lang.StringHIDE_DETAILS_LABEL_KEYThe key used to retrieve the label for hide details buttons.static java.lang.StringIGNORE_LABEL_KEYThe key used to retrieve the label for ignore buttons.static java.lang.StringNEXT_LABEL_KEYThe key used to retrieve the label for next buttons.static java.lang.StringNO_LABEL_KEYThe key used to retrieve the label for no buttons.static java.lang.StringNO_TO_ALL_LABEL_KEYThe key used to retrieve the label for no to all buttons.static java.lang.StringOK_LABEL_KEYThe key used to retrieve the label for OK buttons.static java.lang.StringOPEN_LABEL_KEYThe key used to retrieve the label for open buttons.static java.lang.StringPROCEED_LABEL_KEYThe key used to retrieve the label for proceed buttons.static java.lang.StringRETRY_LABEL_KEYThe key used to retrieve the label for retry buttons.static java.lang.StringSHOW_DETAILS_LABEL_KEYThe key used to retrieve the label for show details buttons.static java.lang.StringSKIP_LABEL_KEYThe key used to retrieve the label for skip buttons.static java.lang.StringSTOP_LABEL_KEYThe key used to retrieve the label for stop buttons.static java.lang.StringYES_LABEL_KEYThe key used to retrieve the label for yes buttons.static java.lang.StringYES_TO_ALL_LABEL_KEYThe key used to retrieve the label for yes to all buttons.
-
-
-
Field Detail
-
OK_LABEL_KEY
static final java.lang.String OK_LABEL_KEY
The key used to retrieve the label for OK buttons. Clients should use the patternJFaceResources.getString(IDialogLabelKeys.OK_LABEL_KEY)to retrieve the label dynamically when using multiple locales.- Since:
- 3.7
- See Also:
- Constant Field Values
-
CANCEL_LABEL_KEY
static final java.lang.String CANCEL_LABEL_KEY
The key used to retrieve the label for cancel buttons. Clients should use the patternJFaceResources.getString(IDialogLabelKeys.CANCEL_LABEL_KEY)to retrieve the label dynamically when using multiple locales.- Since:
- 3.7
- See Also:
- Constant Field Values
-
YES_LABEL_KEY
static final java.lang.String YES_LABEL_KEY
The key used to retrieve the label for yes buttons. Clients should use the patternJFaceResources.getString(IDialogLabelKeys.YES_LABEL_KEY)to retrieve the label dynamically when using multiple locales.- Since:
- 3.7
- See Also:
- Constant Field Values
-
NO_LABEL_KEY
static final java.lang.String NO_LABEL_KEY
The key used to retrieve the label for no buttons. Clients should use the patternJFaceResources.getString(IDialogLabelKeys.NO_LABEL_KEY)to retrieve the label dynamically when using multiple locales.- Since:
- 3.7
- See Also:
- Constant Field Values
-
NO_TO_ALL_LABEL_KEY
static final java.lang.String NO_TO_ALL_LABEL_KEY
The key used to retrieve the label for no to all buttons. Clients should use the patternJFaceResources.getString(IDialogLabelKeys.NO_TO_ALL_LABEL_KEY)to retrieve the label dynamically when using multiple locales.- Since:
- 3.7
- See Also:
- Constant Field Values
-
YES_TO_ALL_LABEL_KEY
static final java.lang.String YES_TO_ALL_LABEL_KEY
The key used to retrieve the label for yes to all buttons. Clients should use the patternJFaceResources.getString(IDialogLabelKeys.YES_TO_ALL_LABEL_KEY)to retrieve the label dynamically when using multiple locales.- Since:
- 3.7
- See Also:
- Constant Field Values
-
SKIP_LABEL_KEY
static final java.lang.String SKIP_LABEL_KEY
The key used to retrieve the label for skip buttons. Clients should use the patternJFaceResources.getString(IDialogLabelKeys.SKIP_LABEL_KEY)to retrieve the label dynamically when using multiple locales.- Since:
- 3.7
- See Also:
- Constant Field Values
-
STOP_LABEL_KEY
static final java.lang.String STOP_LABEL_KEY
The key used to retrieve the label for stop buttons. Clients should use the patternJFaceResources.getString(IDialogLabelKeys.STOP_LABEL_KEY)to retrieve the label dynamically when using multiple locales.- Since:
- 3.7
- See Also:
- Constant Field Values
-
ABORT_LABEL_KEY
static final java.lang.String ABORT_LABEL_KEY
The key used to retrieve the label for abort buttons. Clients should use the patternJFaceResources.getString(IDialogLabelKeys.ABORT_LABEL_KEY)to retrieve the label dynamically when using multiple locales.- Since:
- 3.7
- See Also:
- Constant Field Values
-
RETRY_LABEL_KEY
static final java.lang.String RETRY_LABEL_KEY
The key used to retrieve the label for retry buttons. Clients should use the patternJFaceResources.getString(IDialogLabelKeys.RETRY_LABEL_KEY)to retrieve the label dynamically when using multiple locales.- Since:
- 3.7
- See Also:
- Constant Field Values
-
IGNORE_LABEL_KEY
static final java.lang.String IGNORE_LABEL_KEY
The key used to retrieve the label for ignore buttons. Clients should use the patternJFaceResources.getString(IDialogLabelKeys.IGNORE_LABEL_KEY)to retrieve the label dynamically when using multiple locales.- Since:
- 3.7
- See Also:
- Constant Field Values
-
PROCEED_LABEL_KEY
static final java.lang.String PROCEED_LABEL_KEY
The key used to retrieve the label for proceed buttons. Clients should use the patternJFaceResources.getString(IDialogLabelKeys.PROCEED_LABEL_KEY)to retrieve the label dynamically when using multiple locales.- Since:
- 3.7
- See Also:
- Constant Field Values
-
OPEN_LABEL_KEY
static final java.lang.String OPEN_LABEL_KEY
The key used to retrieve the label for open buttons. Clients should use the patternJFaceResources.getString(IDialogLabelKeys.OPEN_LABEL_KEY)to retrieve the label dynamically when using multiple locales.- Since:
- 3.7
- See Also:
- Constant Field Values
-
CLOSE_LABEL_KEY
static final java.lang.String CLOSE_LABEL_KEY
The key used to retrieve the label for close buttons. Clients should use the patternJFaceResources.getString(IDialogLabelKeys.CLOSE_LABEL_KEY)to retrieve the label dynamically when using multiple locales.- Since:
- 3.7
- See Also:
- Constant Field Values
-
SHOW_DETAILS_LABEL_KEY
static final java.lang.String SHOW_DETAILS_LABEL_KEY
The key used to retrieve the label for show details buttons. Clients should use the patternJFaceResources.getString(IDialogLabelKeys.SHOW_DETAILS_LABEL_KEY)to retrieve the label dynamically when using multiple locales.- Since:
- 3.7
- See Also:
- Constant Field Values
-
HIDE_DETAILS_LABEL_KEY
static final java.lang.String HIDE_DETAILS_LABEL_KEY
The key used to retrieve the label for hide details buttons. Clients should use the patternJFaceResources.getString(IDialogLabelKeys.HIDE_DETAILS_LABEL_KEY)to retrieve the label dynamically when using multiple locales.- Since:
- 3.7
- See Also:
- Constant Field Values
-
BACK_LABEL_KEY
static final java.lang.String BACK_LABEL_KEY
The key used to retrieve the label for back buttons. Clients should use the patternJFaceResources.getString(IDialogLabelKeys.BACK_LABEL_KEY)to retrieve the label dynamically when using multiple locales.- Since:
- 3.7
- See Also:
- Constant Field Values
-
NEXT_LABEL_KEY
static final java.lang.String NEXT_LABEL_KEY
The key used to retrieve the label for next buttons. Clients should use the patternJFaceResources.getString(IDialogLabelKeys.NEXT_LABEL_KEY)to retrieve the label dynamically when using multiple locales.- Since:
- 3.7
- See Also:
- Constant Field Values
-
FINISH_LABEL_KEY
static final java.lang.String FINISH_LABEL_KEY
The key used to retrieve the label for finish buttons. Clients should use the patternJFaceResources.getString(IDialogLabelKeys.FINISH_LABEL_KEY)to retrieve the label dynamically when using multiple locales.- Since:
- 3.7
- See Also:
- Constant Field Values
-
HELP_LABEL_KEY
static final java.lang.String HELP_LABEL_KEY
The key used to retrieve the label for help buttons. Clients should use the patternJFaceResources.getString(IDialogLabelKeys.HELP_LABEL_KEY)to retrieve the label dynamically when using multiple locales.- Since:
- 3.7
- See Also:
- Constant Field Values
-
-