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.views.framelist;
10:
11: import org.eclipse.osgi.util.NLS;
12:
13: public class FrameListMessages extends NLS {
14: private static final String BUNDLE_NAME = "org.eclipse.ui.internal.views.framelist.messages";//$NON-NLS-1$
15:
16: // ==============================================================================
17: // FrameList
18: // ==============================================================================
19: public static String Back_text;
20: public static String Back_toolTip;
21: public static String Back_toolTipOneArg;
22:
23: public static String Forward_text;
24: public static String Forward_toolTip;
25: public static String Forward_toolTipOneArg;
26:
27: public static String GoInto_text;
28: public static String GoInto_toolTip;
29:
30: public static String Up_text;
31: public static String Up_toolTip;
32: public static String Up_toolTipOneArg;
33:
34: static {
35: // load message values from bundle file
36: NLS.initializeMessages(BUNDLE_NAME, FrameListMessages.class);
37: }
38: }
|