KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > ui > internal > views > bookmarkexplorer > BookmarkMessages


1 /*******************************************************************************
2  * Copyright (c) 2005, 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 - Initial API and implementation
10  *******************************************************************************/

11 package org.eclipse.ui.internal.views.bookmarkexplorer;
12
13 import org.eclipse.osgi.util.NLS;
14
15 public class BookmarkMessages extends NLS {
16     private static final String JavaDoc BUNDLE_NAME = "org.eclipse.ui.internal.views.bookmarkexplorer.messages";//$NON-NLS-1$
17
//
18
// Copyright (c) 2000, 2003 IBM Corporation and others.
19
// All rights reserved. This program and the accompanying materials
20
// are made available under the terms of the Eclipse Public License v1.0
21
// which accompanies this distribution, and is available at
22
// http://www.eclipse.org/legal/epl-v10.html
23
//
24
// Contributors:
25
// IBM Corporation - initial API and implementation
26
//
27

28     // package: org.eclipse.ui.views.bookmarkexplorer
29

30
31     public static String JavaDoc CopyBookmark_text;
32
33     public static String JavaDoc PasteBookmark_text;
34     public static String JavaDoc PasteBookmark_undoText;
35     public static String JavaDoc PasteBookmark_errorTitle;
36
37     public static String JavaDoc OpenBookmark_text;
38     public static String JavaDoc OpenBookmark_toolTip;
39     public static String JavaDoc OpenBookmark_errorTitle;
40
41     public static String JavaDoc RemoveBookmark_text;
42     public static String JavaDoc RemoveBookmark_undoText;
43     public static String JavaDoc RemoveBookmark_toolTip;
44     public static String JavaDoc RemoveBookmark_errorTitle;
45
46     public static String JavaDoc SelectAll_text;
47     public static String JavaDoc SelectAll_toolTip;
48
49     public static String JavaDoc Properties_text;
50
51     public static String JavaDoc ColumnDescription_text;
52     public static String JavaDoc ColumnResource_text;
53     public static String JavaDoc ColumnFolder_text;
54     public static String JavaDoc ColumnLocation_text;
55     public static String JavaDoc ColumnCreationTime_text;
56     
57     public static String JavaDoc Error_text;
58
59     public static String JavaDoc LineIndicator_text;
60
61     public static String JavaDoc ColumnIcon_header;
62     public static String JavaDoc ColumnDescription_header;
63     public static String JavaDoc ColumnResource_header;
64     public static String JavaDoc ColumnFolder_header;
65     public static String JavaDoc ColumnLocation_header;
66
67     public static String JavaDoc ColumnDescription_dialogText;
68     public static String JavaDoc ColumnResource_dialogText;
69     public static String JavaDoc ColumnFolder_dialogText;
70     public static String JavaDoc ColumnLocation_dialogText;
71
72     public static String JavaDoc SortMenuGroup_text;
73     public static String JavaDoc SortDirectionAscending_text;
74     public static String JavaDoc SortDirectionDescending_text;
75
76     public static String JavaDoc PropertiesDialogTitle_text;
77     public static String JavaDoc MarkerCreationTime_text;
78
79     public static String JavaDoc CopyToClipboardProblemDialog_title;
80     public static String JavaDoc CopyToClipboardProblemDialog_message;
81
82     public static String JavaDoc CreateBookmark_undoText;
83     public static String JavaDoc ModifyBookmark_undoText;
84
85     static {
86         // load message values from bundle file
87
NLS.initializeMessages(BUNDLE_NAME, BookmarkMessages.class);
88     }
89 }
90
Popular Tags