KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > debug > internal > ui > contextlaunching > ContextMessages


1 /*******************************************************************************
2  * Copyright (c) 2007 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 Corporation - initial API and implementation
10  *******************************************************************************/

11 package org.eclipse.debug.internal.ui.contextlaunching;
12
13 import org.eclipse.osgi.util.NLS;
14
15 /**
16  * NLS'd messages for context launching artifacts
17  * @since 3.3
18  * CONTEXTLAUNCHING
19  */

20 public class ContextMessages extends NLS {
21     private static final String JavaDoc BUNDLE_NAME = "org.eclipse.debug.internal.ui.contextlaunching.ContextMessages"; //$NON-NLS-1$
22
public static String JavaDoc ContextRunner_0;
23     public static String JavaDoc ContextRunner_1;
24     public static String JavaDoc ContextRunner_13;
25     public static String JavaDoc ContextRunner_14;
26     public static String JavaDoc ContextRunner_15;
27     public static String JavaDoc ContextRunner_16;
28     public static String JavaDoc ContextRunner_2;
29     public static String JavaDoc ContextRunner_3;
30     public static String JavaDoc ContextRunner_7;
31     public static String JavaDoc LaunchingResourceManager_0;
32     static {
33         // initialize resource bundle
34
NLS.initializeMessages(BUNDLE_NAME, ContextMessages.class);
35     }
36
37     private ContextMessages() {
38     }
39 }
40
Popular Tags