lttng: Support to select start and end event in LatencyAnalysisViewer
[deliverable/tracecompass.git] / analysis / org.eclipse.tracecompass.analysis.os.linux.ui / src / org / eclipse / tracecompass / internal / analysis / os / linux / ui / views / latency / Messages.java
CommitLineData
7b79ee46
FLN
1/*******************************************************************************
2 * Copyright (c) 2015 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 * France Lapointe Nguyen - Initial API and implementation
11 *******************************************************************************/
12
13package org.eclipse.tracecompass.internal.analysis.os.linux.ui.views.latency;
14
15import org.eclipse.jdt.annotation.Nullable;
16import org.eclipse.osgi.util.NLS;
17
18/**
19 * @author France Lapointe Nguyen
20 */
21public class Messages extends NLS {
22 private static final String BUNDLE_NAME = "org.eclipse.tracecompass.internal.analysis.os.linux.ui.views.latency.messages"; //$NON-NLS-1$
23
24 /**
25 * Name of the duration column
26 */
27 public static @Nullable String LatencyTableViewer_duration;
28
29 /**
30 * Name of the end time column
31 */
32 public static @Nullable String LatencyTableViewer_endTime;
33
34 /**
35 * Name of the start time column
36 */
37 public static @Nullable String LatencyTableViewer_startTime;
38
39 /**
40 * Title of the scatter graph
41 */
42 public static @Nullable String LatencyView_title;
43
44 /**
45 * Title of the x axis of the scatter graph
46 */
47 public static @Nullable String LatencyView_xAxis;
48
49 /**
50 * Title of the y axis of the scatter graph
51 */
52 public static @Nullable String LatencyView_yAxis;
21de574d
BH
53
54 /**
55 * Title of action to goto start time time
56 */
57 public static @Nullable String LatencyView_goToStartEvent;
58
59 /**
60 * Title of action to goto end event
61 */
62 public static @Nullable String LatencyView_goToEndEvent;
63
7b79ee46
FLN
64 static {
65 // initialize resource bundle
66 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
67 }
68
69 private Messages() {
70 }
71}
This page took 0.02603 seconds and 5 git commands to generate.