KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > ui > internal > intro > IntroMessages


1 /*******************************************************************************
2  * Copyright (c) 2003, 2006 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Contributors:
9  * IBM - Initial API and implementation
10  *******************************************************************************/

11 package org.eclipse.ui.internal.intro;
12
13 import org.eclipse.osgi.util.NLS;
14
15
16 /**
17  * The IntroMessages are the messages used in the intro support.
18  */

19 public class IntroMessages extends NLS {
20     private static final String JavaDoc BUNDLE_NAME = "org.eclipse.ui.internal.intro.intro";//$NON-NLS-1$
21

22     public static String JavaDoc Intro_could_not_create_part;
23     public static String JavaDoc Intro_could_not_create_proxy;
24     public static String JavaDoc Intro_could_not_create_descriptor;
25     public static String JavaDoc Intro_action_text;
26     public static String JavaDoc Intro_default_title;
27     public static String JavaDoc Intro_missing_product_title;
28     public static String JavaDoc Intro_missing_product_message;
29
30     static {
31         // load message values from bundle file
32
NLS.initializeMessages(BUNDLE_NAME, IntroMessages.class);
33     }
34 }
35
Popular Tags