timing.core: Add local statistics to the latency statistics
[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.osgi.util.NLS;
15
16 /**
17 * Messages used in the LTTng kernel CPU usage view and viewers.
18 *
19 * @author Bernd Hufmann
20 */
21 public class Messages extends NLS {
22
23 private static final String BUNDLE_NAME = "org.eclipse.tracecompass.internal.analysis.timing.ui.views.segmentstore.statistics.messages"; //$NON-NLS-1$
24
25 /** Default "selection" label in statistics viewer */
26 public static String AbstractSegmentStoreStatisticsViewer_selection;
27 /** Default "total" label in statistics viewer */
28 public static String AbstractSegmentStoreStatisticsViewer_total;
29 /** Default "category" label in statistics viewer */
30 public static String AbstractSegmentStoreStatisticsViewer_types;
31
32 /** Name of level column */
33 public static String SegmentStoreStatistics_LevelLabel;
34 /** Name of the minimum column */
35 public static String SegmentStoreStatistics_Statistics_MinLabel;
36 /** Name of maximum column */
37 public static String SegmentStoreStatistics_MaxLabel;
38 /** Name of average column */
39 public static String SegmentStoreStatistics_AverageLabel;
40 /** Name of count column */
41 public static String SegmentStoreStatisticsViewer_Count;
42 /**
43 * Name of count column
44 *
45 * @since 1.1
46 */
47 public static String SegmentStoreStatisticsViewer_Total;
48 /** Name of average column */
49 public static String SegmentStoreStatisticsViewer_StandardDeviation;
50 /** Menu item for go to minimum duration */
51 public static String SegmentStoreStatisticsViewer_GotoMinAction;
52 /** Menu item for go to maximum duration */
53 public static String SegmentStoreStatisticsViewer_GotoMaxAction;
54
55 static {
56 // initialize resource bundle
57 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
58 }
59
60 private Messages() {
61 }
62 }
This page took 0.032259 seconds and 5 git commands to generate.