fix #428919: Support multi-trace histograms
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / views / histogram / Messages.java
1 /*******************************************************************************
2 * Copyright (c) 2009, 2014 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 * William Bourque - Initial API and implementation
11 * Francois Chouinard - Cleanup and refactoring
12 * Francois Chouinard - Moved from LTTng to TMF
13 * Patrick Tasse - Update for histogram selection range and tool tip
14 *******************************************************************************/
15
16 package org.eclipse.linuxtools.tmf.ui.views.histogram;
17
18 import org.eclipse.osgi.util.NLS;
19
20 /**
21 * Messages file for the histogram widgets.
22 * <p>
23 *
24 * @version 1.0
25 * @author Francois Chouinard
26 */
27 public class Messages extends NLS {
28
29 // ------------------------------------------------------------------------
30 // Constants
31 // ------------------------------------------------------------------------
32
33 private static final String BUNDLE_NAME = "org.eclipse.linuxtools.tmf.ui.views.histogram.messages"; //$NON-NLS-1$
34
35 /**
36 * @since 3.0
37 */
38 public static String HistogramView_showTraces;
39
40 /**
41 * @since 2.2
42 */
43 public static String HistogramView_hideLostEvents;
44 /**
45 * The label for the selection start time
46 * @since 2.2
47 */
48 public static String HistogramView_selectionStartLabel;
49 /**
50 * The label for the selection end time
51 * @since 2.2
52 */
53 public static String HistogramView_selectionEndLabel;
54 /**
55 * The label for the window span.
56 */
57 public static String HistogramView_windowSpanLabel;
58 /**
59 * The tool tip text for the selection span.
60 * @since 2.2
61 */
62 public static String Histogram_selectionSpanToolTip;
63 /**
64 * The tool tip text for the bucket range.
65 * @since 2.2
66 */
67 public static String Histogram_bucketRangeToolTip;
68 /**
69 * The tool tip text for the event count.
70 * @since 2.2
71 */
72 public static String Histogram_eventCountToolTip;
73 /**
74 * The tool tip text for the lost event count.
75 * @since 2.2
76 */
77 public static String Histogram_lostEventCountToolTip;
78
79 // ------------------------------------------------------------------------
80 // Initializer
81 // ------------------------------------------------------------------------
82
83 static {
84 // initialize resource bundle
85 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
86 }
87
88 // ------------------------------------------------------------------------
89 // Constructor
90 // ------------------------------------------------------------------------
91
92 private Messages() {
93 }
94
95 }
This page took 0.034253 seconds and 6 git commands to generate.