Revert all luna temporary annotation changes
[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 /** Could not link trace */
51 public static String TmfOpenTraceHelper_LinkFailed;
52 /** No trace type match */
53 public static String TmfOpenTraceHelper_NoTraceTypeMatch;
54 /** Open Trace*/
55 public static String TmfOpenTraceHelper_OpenTrace;
56 /** Reduce was too efficient, no candidates found! */
57 public static String TmfOpenTraceHelper_ReduceError;
58 /** No trace type */
59 public static String TmfOpenTraceHelper_NoTraceType;
60 /** Init error */
61 public static String TmfOpenTraceHelper_InitError;
62 /** Error */
63 public static String TmfOpenTraceHelper_Error;
64
65 static {
66 // initialize resource bundle
67 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
68 }
69
70 private Messages() {
71 }
72 }
This page took 0.035677 seconds and 6 git commands to generate.