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 / statistics / 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 * Bernd Hufmann - Initial API and implementation
11 *******************************************************************************/
12
13 package org.eclipse.tracecompass.internal.analysis.os.linux.ui.views.latency.statistics;
14
15 import org.eclipse.jdt.annotation.NonNullByDefault;
16 import org.eclipse.osgi.util.NLS;
17
18 /**
19 * Messages used in the LTTng kernel CPU usage view and viewers.
20 *
21 * @author Bernd Hufmann
22 */
23 @NonNullByDefault(false)
24 public class Messages extends NLS {
25
26 private static final String BUNDLE_NAME = "org.eclipse.tracecompass.internal.analysis.os.linux.ui.views.latency.statistics.messages"; //$NON-NLS-1$
27
28 /** Name of the system call level in statistics tree */
29 public static String LatencyStatistics_SyscallLevelName;
30 /** Name of level column */
31 public static String LatencyStatistics_LevelLabel;
32 /** Name of the minimum column */
33 public static String LatencyStatistics_MinLabel;
34 /** Name of maximum column */
35 public static String LatencyStatistics_MaxLabel;
36 /** Name of average column */
37 public static String LatencyStatistics_AverageLabel;
38 /** Name of Total statistics */
39 public static String LatencyStatistics_TotalLabel;
40
41 static {
42 // initialize resource bundle
43 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
44 }
45
46 private Messages() {
47 }
48 }
This page took 0.032301 seconds and 5 git commands to generate.