01: /**********************************************************************
02: * Copyright (c) 2005 IBM Corporation and others. All rights reserved. This
03: * program and the accompanying materials are made available under the terms of
04: * the Eclipse Public License v1.0 which accompanies this distribution, and is
05: * available at http://www.eclipse.org/legal/epl-v10.html
06: *
07: * Contributors:
08: * IBM - Initial API and implementation
09: **********************************************************************/package org.eclipse.ui.examples.undo;
10:
11: import org.eclipse.osgi.util.NLS;
12:
13: /**
14: * Message class for the undo example.
15: *
16: */
17: public class UndoExampleMessages extends NLS {
18: private static final String BUNDLE_NAME = "org.eclipse.ui.examples.undo.messages";//$NON-NLS-1$
19:
20: public static String UndoPreferences_Description;
21: public static String UndoPreferences_HistoryLimit;
22: public static String UndoPreferences_ConfirmUndo;
23: public static String UndoPreferences_ShowDebug;
24: public static String UndoPreferences_DoNotConfirm;
25:
26: public static String UndoHistoryView_ContextFilterDialog;
27: public static String UndoHistoryView_ChooseContextMessage;
28: public static String UndoHistoryView_FilterText;
29: public static String UndoHistoryView_FilterToolTipText;
30: public static String UndoHistoryView_OperationInvalid;
31: public static String UndoHistoryView_OperationException;
32: public static String UndoHistoryView_UndoSelected;
33: public static String UndoHistoryView_UndoSelectedToolTipText;
34: public static String UndoHistoryView_RefreshList;
35: public static String UndoHistoryView_RefreshListToolTipText;
36: public static String UndoHistoryView_InfoDialogTitle;
37:
38: public static String BoxView_Title;
39: public static String BoxView_ClearBoxes;
40: public static String BoxView_ClearBoxesToolTipText;
41: public static String BoxView_Move;
42: public static String BoxView_Add;
43: public static String BoxView_ConfirmUndo;
44: public static String BoxView_Undo;
45: public static String BoxView_Redo;
46:
47: static {
48: // load message values from bundle file
49: NLS.initializeMessages(BUNDLE_NAME, UndoExampleMessages.class);
50: }
51:
52: }
|