tmf: Use tabs in statistics view for each traces
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng.core / src / org / eclipse / linuxtools / internal / lttng / core / tracecontrol / Messages.java
1 /*******************************************************************************
2 * Copyright (c) 2011 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 * Bernd Hufmann - Initial API and implementation
11 *
12 *******************************************************************************/
13 package org.eclipse.linuxtools.internal.lttng.core.tracecontrol;
14
15 import org.eclipse.osgi.util.NLS;
16
17 public class Messages extends NLS {
18 private static final String BUNDLE_NAME = "org.eclipse.linuxtools.internal.lttng.core.tracecontrol.messages"; //$NON-NLS-1$
19
20 // Trace resource properties
21 public static String Ltt_Trace_Property_TracePathName;
22 public static String Ltt_Trace_Property_TracePathDescription;
23 public static String Ltt_Trace_Property_NumberOfChannelsName;
24 public static String Ltt_Trace_Property_NumberOfChannelsDescr;
25 public static String Ltt_Trace_Property_FlighRecorderModeName;
26 public static String Ltt_Trace_Property_FlighRecorderModeDesc;
27 public static String Ltt_Trace_Property_NormalModeName;
28 public static String Ltt_Trace_Property_NormalModeDesc;
29 public static String Ltt_Trace_Property_NetworkTraceName;
30 public static String Ltt_Trace_Property_NetWorkTraceDescr;
31 public static String Ltt_Trace_Property_TraceTransportName;
32 public static String Ltt_Trace_Property_TraceTransportDesc;
33
34 static {
35 // initialize resource bundle
36 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
37 }
38
39 private Messages() {
40 }
41 }
This page took 0.038013 seconds and 5 git commands to generate.