lttng: Add latency statistics
[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
a5c41909 15import org.eclipse.jdt.annotation.NonNullByDefault;
7b79ee46
FLN
16import org.eclipse.osgi.util.NLS;
17
18/**
19 * @author France Lapointe Nguyen
20 */
a5c41909 21@NonNullByDefault(false)
7b79ee46
FLN
22public class Messages extends NLS {
23 private static final String BUNDLE_NAME = "org.eclipse.tracecompass.internal.analysis.os.linux.ui.views.latency.messages"; //$NON-NLS-1$
24
25 /**
a5c41909 26 * Legend
7b79ee46 27 */
a5c41909 28 public static String LatencyScatterGraphViewer_legend;
7b79ee46
FLN
29
30 /**
a5c41909 31 * Time vs Duration
7b79ee46 32 */
a5c41909 33 public static String LatencyScatterView_title;
7b79ee46
FLN
34
35 /**
a5c41909
MK
36 * Time
37 */
38 public static String LatencyScatterView_xAxis;
39
40 /**
41 * Duration
7b79ee46 42 */
a5c41909 43 public static String LatencyScatterView_yAxis;
7b79ee46
FLN
44
45 /**
a5c41909 46 * Name of the compacting job
7b79ee46 47 */
a5c41909 48 public static String LatencyScatterGraphViewer_compactTitle;
7b79ee46
FLN
49
50 /**
a5c41909
MK
51 * Name of the duration column
52 */
53 public static String LatencyTableViewer_duration;
54
55 /**
56 * Name of the end time column
7b79ee46 57 */
a5c41909 58 public static String LatencyTableViewer_endTime;
7b79ee46
FLN
59
60 /**
a5c41909 61 * Name of the start time column
7b79ee46 62 */
a5c41909 63 public static String LatencyTableViewer_startTime;
21de574d
BH
64
65 /**
66 * Title of action to goto start time time
67 */
a5c41909 68 public static String LatencyView_goToStartEvent;
21de574d
BH
69
70 /**
71 * Title of action to goto end event
72 */
a5c41909 73 public static String LatencyView_goToEndEvent;
21de574d 74
ce8319b6
BH
75 /**
76 * Name of show statistics action
77 */
78 public static String LatencyTable_ShowStatisticsActionName;
79
7b79ee46
FLN
80 static {
81 // initialize resource bundle
82 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
83 }
84
85 private Messages() {
86 }
87}
This page took 0.027739 seconds and 5 git commands to generate.