KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > ui > internal > ExtensionEventHandlerMessages


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;
11
12 import org.eclipse.osgi.util.NLS;
13
14 public class ExtensionEventHandlerMessages extends NLS {
15     private static final String JavaDoc BUNDLE_NAME = "org.eclipse.ui.internal.ExtensionEventHandler";//$NON-NLS-1$
16
//
17
// Copyright (c) 2003, 2004 IBM Corporation and others.
18
// All rights reserved. This program and the accompanying materials
19
// are made available under the terms of the Eclipse Public License v1.0
20
// which accompanies this distribution, and is available at
21
// http://www.eclipse.org/legal/epl-v10.html
22
//
23
// Contributors:
24
// IBM Corporation - initial API and implementation
25
//
26
public static String JavaDoc ExtensionEventHandler_new_action_set;
27     public static String JavaDoc ExtensionEventHandler_following_changes;
28     public static String JavaDoc ExtensionEventHandler_change_format;
29     public static String JavaDoc ExtensionEventHandler_need_to_reset;
30     public static String JavaDoc ExtensionEventHandler_reset_perspective;
31
32
33     static {
34         // load message values from bundle file
35
NLS.initializeMessages(BUNDLE_NAME, ExtensionEventHandlerMessages.class);
36     }
37 }
Popular Tags