tmf: Move the symbol provider messages to their own package
[deliverable/tracecompass.git] / analysis / org.eclipse.tracecompass.analysis.timing.ui / src / org / eclipse / tracecompass / internal / analysis / timing / ui / views / segmentstore / statistics / Messages.java
1 /*******************************************************************************
2 * Copyright (c) 2015, 2016 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 package org.eclipse.tracecompass.internal.analysis.timing.ui.views.segmentstore.statistics;
13
14 import org.eclipse.jdt.annotation.NonNullByDefault;
15 import 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 */
22 @NonNullByDefault({})
23 public class Messages extends NLS {
24
25 private static final String BUNDLE_NAME = "org.eclipse.tracecompass.internal.analysis.timing.ui.views.segmentstore.statistics.messages"; //$NON-NLS-1$
26
27 /** Name of level column */
28 public static String SegmentStoreStatistics_LevelLabel;
29 /** Name of the minimum column */
30 public static String SegmentStoreStatistics_Statistics_MinLabel;
31 /** Name of maximum column */
32 public static String SegmentStoreStatistics_MaxLabel;
33 /** Name of average column */
34 public static String SegmentStoreStatistics_AverageLabel;
35 /** Name of average column */
36 public static String SegmentStoreStatisticsViewer_StandardDeviation;
37
38 static {
39 // initialize resource bundle
40 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
41 }
42
43 private Messages() {
44 }
45 }
This page took 0.033264 seconds and 6 git commands to generate.