tmf: extract SelectTracesOperation from SelectTracesWizardPage
[deliverable/tracecompass.git] / tmf / org.eclipse.tracecompass.tmf.ui / src / org / eclipse / tracecompass / internal / tmf / ui / project / operations / Messages.java
1 /*******************************************************************************
2 * Copyright (c) 2016 Ericsson
3 *
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
8 *******************************************************************************/
9
10 package org.eclipse.tracecompass.internal.tmf.ui.project.operations;
11
12 import org.eclipse.osgi.util.NLS;
13
14 /**
15 * The messages for workspace operations.
16 * @author Bernd Hufmann
17 */
18 public class Messages extends NLS {
19 private static final String BUNDLE_NAME = "org.eclipse.tracecompass.internal.tmf.ui.project.operations.messages"; //$NON-NLS-1$
20
21 /**
22 * The task name for removing of a trace for an experiment.
23 */
24 public static String SelectTracesWizardPage_TraceRemovalTask;
25
26 /**
27 * The task name for selecting of a trace for an experiment.
28 */
29 public static String SelectTracesWizardPage_TraceSelectionTask;
30
31 /**
32 * The error message when selecting of traces for an experiment fails.
33 */
34 public static String SelectTracesWizardPage_SelectionError;
35 static {
36 // initialize resource bundle
37 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
38 }
39
40 private Messages() {
41 }
42 }
This page took 0.031858 seconds and 5 git commands to generate.