01: /*******************************************************************************
02: * Copyright (c) 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.contributions;
11:
12: import org.eclipse.osgi.util.NLS;
13:
14: /**
15: * Externalized messages for the code in this plugin.
16: *
17: * @since 3.3
18: */
19: public class ContributionMessages extends NLS {
20:
21: private static final String BUNDLE_NAME = "org.eclipse.ui.examples.contributions.messages";//$NON-NLS-1$
22: static {
23: // load message values from bundle file
24: NLS.initializeMessages(BUNDLE_NAME, ContributionMessages.class);
25: }
26: public static String DeltaInfoHandler_found;
27: public static String DeltaInfoHandler_notFound;
28: public static String DeltaInfoHandler_shellTitle;
29: public static String EditInfoHandler_failed_to_open;
30: public static String InfoEditor_givenname;
31: public static String InfoEditor_surname;
32: public static String InfoView_countElements;
33: public static String SampleHandler_hello_msg;
34: public static String SampleHandler_plugin_name;
35: }
|