Bug 483621: Move segment store statistics into timing analysis plug-ins
[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
CommitLineData
ce8319b6 1/*******************************************************************************
658401c8 2 * Copyright (c) 2015, 2016 Ericsson
ce8319b6
BH
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 *******************************************************************************/
ce8319b6
BH
12package org.eclipse.tracecompass.internal.analysis.os.linux.ui.views.latency.statistics;
13
14import org.eclipse.jdt.annotation.NonNullByDefault;
15import org.eclipse.osgi.util.NLS;
16
17/**
18 * Messages used in the LTTng kernel CPU usage view and viewers.
19 *
20 * @author Bernd Hufmann
21 */
4c4e2816 22@NonNullByDefault({})
ce8319b6
BH
23public class Messages extends NLS {
24
25 private static final String BUNDLE_NAME = "org.eclipse.tracecompass.internal.analysis.os.linux.ui.views.latency.statistics.messages"; //$NON-NLS-1$
26
27 /** Name of the system call level in statistics tree */
28 public static String LatencyStatistics_SyscallLevelName;
ce8319b6
BH
29 /** Name of Total statistics */
30 public static String LatencyStatistics_TotalLabel;
31
32 static {
33 // initialize resource bundle
34 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
35 }
36
37 private Messages() {
38 }
39}
This page took 0.031953 seconds and 5 git commands to generate.