analysis: add menu to go to min or max from the segment start stats
[deliverable/tracecompass.git] / analysis / org.eclipse.tracecompass.analysis.timing.ui / src / org / eclipse / tracecompass / analysis / timing / ui / views / segmentstore / statistics / Messages.java
CommitLineData
658401c8
BH
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 *******************************************************************************/
5b901f94 12package org.eclipse.tracecompass.analysis.timing.ui.views.segmentstore.statistics;
658401c8
BH
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 */
22@NonNullByDefault({})
23public class Messages extends NLS {
24
5b901f94 25 private static final String BUNDLE_NAME = "org.eclipse.tracecompass.analysis.timing.ui.views.segmentstore.statistics.messages"; //$NON-NLS-1$
658401c8
BH
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;
8f6e9344
JCK
35 /** Name of count column */
36 public static String SegmentStoreStatisticsViewer_Count;
91deb4e1
MK
37 /** Name of average column */
38 public static String SegmentStoreStatisticsViewer_StandardDeviation;
a1e4b7e8
BH
39 /** Menu item for go to minimum duration */
40 public static String SegmentStoreStatisticsViewer_GotoMinAction;
41 /** Menu item for go to maximum duration */
42 public static String SegmentStoreStatisticsViewer_GotoMaxAction;
658401c8
BH
43
44 static {
45 // initialize resource bundle
46 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
47 }
48
49 private Messages() {
50 }
51}
This page took 0.048022 seconds and 5 git commands to generate.