KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > ui > internal > views > contentoutline > ContentOutlineMessages


1 /**********************************************************************
2  * Copyright (c) 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.ui.internal.views.contentoutline;
11
12 import org.eclipse.osgi.util.NLS;
13
14 /**
15  * ContentOutlineMessages is the message class for the messages used in the content outline.
16  *
17  */

18 public class ContentOutlineMessages extends NLS {
19     private static final String JavaDoc BUNDLE_NAME = "org.eclipse.ui.internal.views.contentoutline.messages";//$NON-NLS-1$
20

21     // ==============================================================================
22
// Outline View
23
// ==============================================================================
24
public static String JavaDoc ContentOutline_noOutline;
25
26     static {
27         // load message values from bundle file
28
NLS.initializeMessages(BUNDLE_NAME, ContentOutlineMessages.class);
29     }
30 }
Popular Tags