52f8046dab1571d3bd635c358b9d520e23876d12
[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.Nullable;
16 import org.eclipse.osgi.util.NLS;
17
18 /**
19 * @author France Lapointe Nguyen
20 */
21 public 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;
53 static {
54 // initialize resource bundle
55 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
56 }
57
58 private Messages() {
59 }
60 }
This page took 0.032304 seconds and 4 git commands to generate.