Fixed a concurrency issue with signal dispatching
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng.ui / src / org / eclipse / linuxtools / lttng / ui / views / Labels.java
CommitLineData
8b29a712
FC
1/*******************************************************************************
2 * Copyright (c) 2009 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 * Francois Chouinard - Initial API and implementation
11 *******************************************************************************/
12
13package org.eclipse.linuxtools.lttng.ui.views;
14
15import org.eclipse.osgi.util.NLS;
16
17/**
18 * <b><u>ViewsLabels</u></b>
19 * <p>
20 * TODO: Implement me. Please.
21 */
22public class Labels extends NLS {
23
24 private static final String BUNDLE_NAME = "org.eclipse.linuxtools.lttng.ui.views.labels"; //$NON-NLS-1$
25
26 // Control Flow View
27 public static String ControlFlowView_ID;
28
29 // Control View
30 public static String ControlView_ID;
31
32 // Events View
33 public static String EventsView_ID;
34
35 // Histogram View
36 public static String HistogramView_ID;
37
38 // Project View
39 public static String ProjectView_ID;
40
41 // resources View
42 public static String ResourcesView_ID;
43
44 // Statistics View
45 public static String StatisticsView_ID;
46
47 // Time Frame view
48 public static String TimeFrameView_ID;
49 public static String TimeFrameView_Seconds;
50 public static String TimeFrameView_Nanosec;
51 public static String TimeFrameView_StartTime;
52 public static String TimeFrameView_EndTime;
53 public static String TimeFrameView_TimeRange;
54 public static String TimeFrameView_CurrentTime;
55
56 static {
57 // initialize resource bundle
58 NLS.initializeMessages(BUNDLE_NAME, Labels.class);
59 }
60
61 private Labels() {
62 }
63
64}
This page took 0.027016 seconds and 5 git commands to generate.