KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > ui > internal > intro > impl > Messages


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

11 package org.eclipse.ui.internal.intro.impl;
12
13 import org.eclipse.osgi.util.NLS;
14
15 public class Messages extends NLS {
16     private static final String JavaDoc INTRO_RESOURCE_BUNDLE = "org.eclipse.ui.internal.intro.impl.Messages"; //$NON-NLS-1$
17

18     static {
19         initializeMessages(INTRO_RESOURCE_BUNDLE, Messages.class);
20     }
21
22     public static String JavaDoc Browser_homeButton_tooltip;
23     public static String JavaDoc Browser_forwardButton_tooltip;
24     public static String JavaDoc Browser_backwardButton_tooltip;
25     public static String JavaDoc Browser_invalidConfig;
26
27     // Dialogs
28
// --------
29
public static String JavaDoc MessageDialog_errorTitle;
30     public static String JavaDoc MessageDialog_warningTitle;
31     public static String JavaDoc MessageDialog_infoTitle;
32
33     public static String JavaDoc CustomizableIntroPart_configNotFound;
34     public static String JavaDoc StandbyPart_returnToIntro;
35     public static String JavaDoc StandbyPart_returnTo;
36     public static String JavaDoc EmptyStandbyContentPart_text;
37     public static String JavaDoc StandbyPart_failedToCreate;
38     public static String JavaDoc StandbyPart_nonDefined;
39     public static String JavaDoc StandbyPart_canNotRestore;
40
41     public static String JavaDoc IntroURL_failedToDecode;
42     public static String JavaDoc IntroURL_badCommand;
43     public static String JavaDoc HyperlinkAdapter_urlIs;
44     public static String JavaDoc HTML_embeddedLink;
45     public static String JavaDoc StaticHTML_welcome;
46
47     public static String JavaDoc IntroLaunchBar_close_label;
48     public static String JavaDoc IntroLaunchBar_close_tooltip;
49     public static String JavaDoc IntroLaunchBar_restore_tooltip;
50
51
52     // Misc
53
// -------
54
public static String JavaDoc IntroPart_showContentButton_tooltip;
55 }
56
Popular Tags