KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > jdt > internal > debug > ui > sourcelookup > SourceLookupMessages


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

10 package org.eclipse.jdt.internal.debug.ui.sourcelookup;
11
12 import org.eclipse.osgi.util.NLS;
13
14 public class SourceLookupMessages extends NLS {
15     private static final String JavaDoc BUNDLE_NAME = "org.eclipse.jdt.internal.debug.ui.sourcelookup.SourceLookupMessages";//$NON-NLS-1$
16
public static String JavaDoc JavaProjectSourceContainerBrowser_0;
17     public static String JavaDoc JavaProjectSourceContainerBrowser_1;
18     public static String JavaDoc JavaProjectSourceContainerBrowser_2;
19
20     static {
21         // load message values from bundle file
22
NLS.initializeMessages(BUNDLE_NAME, SourceLookupMessages.class);
23     }
24 }
Popular Tags