tmf: Move plugins to their own sub-directory
[deliverable/tracecompass.git] / tmf / org.eclipse.tracecompass.tmf.ui / src / org / eclipse / tracecompass / internal / tmf / ui / project / dialogs / Messages.java
CommitLineData
e12ecd30 1/*******************************************************************************
ed902a2b 2 * Copyright (c) 2011, 2014 Ericsson
a0a88f65 3 *
e12ecd30
BH
4 * All rights reserved. This program and the accompanying materials are
5 * made available under the terms of the Eclipse Public License v1.0 which
6 * accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
a0a88f65 8 *
e12ecd30 9 * Contributors:
31cff5ca
MAL
10 * Francois Chouinard - Initial API and implementation
11 * Marc-Andre Laperle - Add select/deselect all
e12ecd30
BH
12 *******************************************************************************/
13
2bdf0193 14package org.eclipse.tracecompass.internal.tmf.ui.project.dialogs;
e12ecd30
BH
15
16import org.eclipse.osgi.util.NLS;
17
a0a88f65
AM
18/**
19 * Message bundle for dialog messages.
20 */
21@SuppressWarnings("javadoc")
e12ecd30
BH
22public class Messages extends NLS {
23
2bdf0193 24 private static final String BUNDLE_NAME = "org.eclipse.tracecompass.internal.tmf.ui.project.dialogs.messages"; //$NON-NLS-1$
e12ecd30
BH
25
26 public static String SelectSpplementaryResources_DialogTitle;
27 public static String SelectSpplementaryResources_ResourcesGroupTitle;
195355a9
MAL
28 public static String Dialog_SelectAll;
29 public static String Dialog_DeselectAll;
a0a88f65 30
e12ecd30
BH
31 static {
32 // initialize resource bundle
33 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
34 }
35
36 private Messages() {
37 }
38}
This page took 0.140564 seconds and 5 git commands to generate.