01: /*******************************************************************************
02: * Copyright (c) 2000, 2005 IBM Corporation and others.
03: * All rights reserved. This program and the accompanying materials
04: * are made available under the terms of the Eclipse Public License v1.0
05: * which accompanies this distribution, and is available at
06: * http://www.eclipse.org/legal/epl-v10.html
07: *
08: * Contributors:
09: * IBM Corporation - initial API and implementation
10: *******************************************************************************/package org.eclipse.jdt.internal.ui.browsing;
11:
12: import org.eclipse.osgi.util.NLS;
13:
14: /**
15: * Helper class to get NLSed messages.
16: */
17: public final class JavaBrowsingMessages extends NLS {
18:
19: private static final String BUNDLE_NAME = JavaBrowsingMessages.class
20: .getName();
21:
22: private JavaBrowsingMessages() {
23: // Do not instantiate
24: }
25:
26: public static String JavaBrowsingPart_toolTip;
27: public static String JavaBrowsingPart_toolTip2;
28: public static String LexicalSortingAction_label;
29: public static String LexicalSortingAction_tooltip;
30: public static String LexicalSortingAction_description;
31: public static String PackagesView_flatLayoutAction_label;
32: public static String PackagesView_HierarchicalLayoutAction_label;
33: public static String PackagesView_LayoutActionGroup_layout_label;
34: public static String StatusBar_concat;
35:
36: static {
37: NLS.initializeMessages(BUNDLE_NAME, JavaBrowsingMessages.class);
38: }
39: }
|