01: /*******************************************************************************
02: * Copyright (c) 2003, 2006 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 - Initial API and implementation
10: *******************************************************************************/package org.eclipse.ui.internal.intro;
11:
12: import org.eclipse.osgi.util.NLS;
13:
14: /**
15: * The IntroMessages are the messages used in the intro support.
16: */
17: public class IntroMessages extends NLS {
18: private static final String BUNDLE_NAME = "org.eclipse.ui.internal.intro.intro";//$NON-NLS-1$
19:
20: public static String Intro_could_not_create_part;
21: public static String Intro_could_not_create_proxy;
22: public static String Intro_could_not_create_descriptor;
23: public static String Intro_action_text;
24: public static String Intro_default_title;
25: public static String Intro_missing_product_title;
26: public static String Intro_missing_product_message;
27:
28: static {
29: // load message values from bundle file
30: NLS.initializeMessages(BUNDLE_NAME, IntroMessages.class);
31: }
32: }
|