analysis: Register latency statistics view as analysis output
[deliverable/tracecompass.git] / analysis / org.eclipse.tracecompass.analysis.os.linux.ui / src / org / eclipse / tracecompass / internal / analysis / os / linux / ui / views / latency / Messages.java
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
13 package org.eclipse.tracecompass.internal.analysis.os.linux.ui.views.latency;
14
15 import org.eclipse.jdt.annotation.NonNullByDefault;
16 import org.eclipse.osgi.util.NLS;
17
18 /**
19 * @author France Lapointe Nguyen
20 */
21 @NonNullByDefault(false)
22 public 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 /**
26 * Time vs Duration
27 */
28 public static String LatencyScatterView_title;
29
30 /**
31 * Time
32 */
33 public static String LatencyScatterView_xAxis;
34
35 /**
36 * Duration
37 */
38 public static String LatencyScatterView_yAxis;
39
40 /**
41 * Name of the duration column
42 */
43 public static String LatencyTableViewer_duration;
44
45 /**
46 * Name of the end time column
47 */
48 public static String LatencyTableViewer_endTime;
49
50 /**
51 * Name of the start time column
52 */
53 public static String LatencyTableViewer_startTime;
54
55 /**
56 * Title of action to goto start time time
57 */
58 public static String LatencyView_goToStartEvent;
59
60 /**
61 * Title of action to goto end event
62 */
63 public static String LatencyView_goToEndEvent;
64
65 /**
66 * Name of show statistics action
67 */
68 public static String LatencyTable_ShowStatisticsActionName;
69
70 static {
71 // initialize resource bundle
72 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
73 }
74
75 private Messages() {
76 }
77 }
This page took 0.031747 seconds and 5 git commands to generate.