1 /*******************************************************************************
2 * Copyright (c) 2015 Ericsson
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
10 * Bernd Hufmann - Initial API and implementation
11 *******************************************************************************/
12 package org
.eclipse
.tracecompass
.internal
.analysis
.os
.linux
.ui
.views
.latency
.statistics
;
14 import org
.eclipse
.jdt
.annotation
.NonNullByDefault
;
15 import org
.eclipse
.osgi
.util
.NLS
;
18 * Messages used in the LTTng kernel CPU usage view and viewers.
20 * @author Bernd Hufmann
23 public class Messages
extends NLS
{
25 private static final String BUNDLE_NAME
= "org.eclipse.tracecompass.internal.analysis.os.linux.ui.views.latency.statistics.messages"; //$NON-NLS-1$
27 /** Name of the system call level in statistics tree */
28 public static String LatencyStatistics_SyscallLevelName
;
29 /** Name of level column */
30 public static String LatencyStatistics_LevelLabel
;
31 /** Name of the minimum column */
32 public static String LatencyStatistics_MinLabel
;
33 /** Name of maximum column */
34 public static String LatencyStatistics_MaxLabel
;
35 /** Name of average column */
36 public static String LatencyStatistics_AverageLabel
;
37 /** Name of Total statistics */
38 public static String LatencyStatistics_TotalLabel
;
41 // initialize resource bundle
42 NLS
.initializeMessages(BUNDLE_NAME
, Messages
.class);