tmf: Bug 415707: Trace already opened should not be re-opened
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / project / model / Messages.java
1 /*******************************************************************************
2 * Copyright (c) 2013 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 * Contributors:
10 * Jean-Christian Kouamé - Initial API and implementation
11 *******************************************************************************/
12
13 package org.eclipse.linuxtools.tmf.ui.project.model;
14
15 import org.eclipse.osgi.util.NLS;
16
17 /**
18 * Message strings for TMF model handling.
19 *
20 * @author Jean-Christian Kouamé
21 * @since 2.1
22 */
23 public class Messages extends NLS {
24
25 private static final String BUNDLE_NAME = "org.eclipse.linuxtools.tmf.ui.project.model.messages"; //$NON-NLS-1$
26
27 /** The category of the resource properties */
28 public static String TmfTraceElement_ResourceProperties;
29
30 /** The category of the trace properties */
31 public static String TmfTraceElement_TraceProperties;
32
33 /** The descriptor for the name property */
34 public static String TmfTraceElement_Name;
35
36 /** The descriptor for the path property */
37 public static String TmfTraceElement_Path;
38
39 /** The descriptor for the location properties */
40 public static String TmfTraceElement_Location;
41
42 /** The descriptor for the event type property */
43 public static String TmfTraceElement_EventType;
44
45 /** The description for the linked property */
46 public static String TmfTraceElement_IsLinked;
47
48 /** Error opening a trace */
49 public static String TmfOpenTraceHelper_ErrorOpeningTrace;
50 /** Error opening an experiment */
51 public static String TmfOpenTraceHelper_ErrorOpeningExperiment;
52 /** Could not link trace */
53 public static String TmfOpenTraceHelper_LinkFailed;
54 /** No trace type match */
55 public static String TmfOpenTraceHelper_NoTraceTypeMatch;
56 /** Open Trace*/
57 public static String TmfOpenTraceHelper_OpenTrace;
58 /** Open Experiment*/
59 public static String TmfOpenTraceHelper_OpenExperiment;
60 /** Reduce was too efficient, no candidates found! */
61 public static String TmfOpenTraceHelper_ReduceError;
62 /** No trace type */
63 public static String TmfOpenTraceHelper_NoTraceType;
64 /** Error opening trace*/
65 public static String TmfOpenTraceHelper_ErrorTrace;
66 /** Error opening experiment */
67 public static String TmfOpenTraceHelper_ErrorExperiment;
68 /** Init error */
69 public static String TmfOpenTraceHelper_InitError;
70
71 static {
72 // initialize resource bundle
73 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
74 }
75
76 private Messages() {
77 }
78 }
This page took 0.035166 seconds and 5 git commands to generate.