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