01: /*******************************************************************************
02: * Copyright (c) 2006, 2007 IBM Corporation and others.
03: * All rights reserved. This program and the accompanying materials
04: * are made available under the terms of the Eclipse Public License v1.0
05: * which accompanies this distribution, and is available at
06: * http://www.eclipse.org/legal/epl-v10.html
07: *
08: * Contributors:
09: * IBM Corporation - initial API and implementation
10: *******************************************************************************/package org.eclipse.ui.examples.fieldassist;
11:
12: import org.eclipse.osgi.util.NLS;
13:
14: /**
15: * Message class for the undo example.
16: *
17: */
18: public class TaskAssistExampleMessages extends NLS {
19: private static final String BUNDLE_NAME = "org.eclipse.ui.examples.fieldassist.messages";//$NON-NLS-1$
20:
21: public static String Preferences_ContentAssistKey;
22: public static String Preferences_ContentAssistKeyPropagate;
23: public static String Preferences_ContentAssistResult;
24: public static String Preferences_ContentAssistResultReplace;
25: public static String Preferences_ContentAssistResultInsert;
26: public static String Preferences_ContentAssistResultNone;
27: public static String Preferences_ContentAssistFilter;
28: public static String Preferences_ContentAssistFilterCumulative;
29: public static String Preferences_ContentAssistFilterCharacter;
30: public static String Preferences_ContentAssistFilterNone;
31: public static String Preferences_ShowSecondaryPopup;
32: public static String Preferences_ContentAssistDelay;
33: public static String Preferences_ErrorIndicator;
34: public static String Preferences_ShowErrorMessage;
35: public static String Preferences_ShowErrorDecorator;
36: public static String Preferences_ShowWarningDecorator;
37: public static String Preferences_ShowProposalCue;
38: public static String Preferences_RequiredFieldIndicator;
39: public static String Preferences_ShowRequiredFieldDecorator;
40: public static String Preferences_ShowRequiredFieldLabelIndicator;
41: public static String Preferences_Description;
42: public static String Preferences_ContentAssistDescription;
43: public static String Preferences_DecoratorDetails;
44: public static String Preferences_DecoratorImpl;
45: public static String Preferences_DecoratorVert;
46: public static String Preferences_DecoratorTop;
47: public static String Preferences_DecoratorCenter;
48: public static String Preferences_DecoratorBottom;
49: public static String Preferences_DecoratorHorz;
50: public static String Preferences_DecoratorLeft;
51: public static String Preferences_DecoratorRight;
52: public static String Preferences_DecoratorMargin;
53: public static String Decorator_Warning;
54: public static String Decorator_Error;
55: public static String Decorator_ContentAssist;
56:
57: public static String ExampleDialog_UserError;
58: public static String ExampleDialog_WarningName;
59: public static String ExampleDialog_UserWarning;
60: public static String ExampleDialog_AgeWarning;
61: public static String ExampleDialog_Title;
62: public static String ExampleDialog_SecurityGroup;
63: public static String ExampleDialog_AutoCompleteGroup;
64: public static String ExampleDialog_UserName;
65: public static String ExampleDialog_ComboUserName;
66: public static String ExampleDialog_Age;
67: public static String ExampleDialog_Password;
68: public static String ExampleDialog_ProposalDescription;
69: public static String ExampleDialog_DefaultSelectionTitle;
70: public static String ExampleDialog_DefaultSelectionMessage;
71: public static String ExampleDialog_SelectionTitle;
72: public static String ExampleDialog_SelectionMessage;
73: public static String ExampleDialog_DecorationMenuItem;
74:
75: static {
76: // load message values from bundle file
77: NLS.initializeMessages(BUNDLE_NAME,
78: TaskAssistExampleMessages.class);
79: }
80:
81: }
|