tmf: Support trace-specific markers in AbstractTimeGraphView
[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
7b79ee46 25 /**
a5c41909 26 * Time vs Duration
7b79ee46 27 */
a5c41909 28 public static String LatencyScatterView_title;
7b79ee46
FLN
29
30 /**
a5c41909
MK
31 * Time
32 */
33 public static String LatencyScatterView_xAxis;
34
35 /**
36 * Duration
7b79ee46 37 */
a5c41909 38 public static String LatencyScatterView_yAxis;
7b79ee46 39
7b79ee46 40 /**
a5c41909
MK
41 * Name of the duration column
42 */
43 public static String LatencyTableViewer_duration;
44
45 /**
46 * Name of the end time column
7b79ee46 47 */
a5c41909 48 public static String LatencyTableViewer_endTime;
7b79ee46
FLN
49
50 /**
a5c41909 51 * Name of the start time column
7b79ee46 52 */
a5c41909 53 public static String LatencyTableViewer_startTime;
21de574d
BH
54
55 /**
56 * Title of action to goto start time time
57 */
a5c41909 58 public static String LatencyView_goToStartEvent;
21de574d
BH
59
60 /**
61 * Title of action to goto end event
62 */
a5c41909 63 public static String LatencyView_goToEndEvent;
21de574d 64
ce8319b6
BH
65 /**
66 * Name of show statistics action
67 */
68 public static String LatencyTable_ShowStatisticsActionName;
69
7b79ee46
FLN
70 static {
71 // initialize resource bundle
72 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
73 }
74
75 private Messages() {
76 }
77}
This page took 0.027383 seconds and 5 git commands to generate.