tmf: Update histogram text controls
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / views / histogram / Messages.java
1 /*******************************************************************************
2 * Copyright (c) 2009, 2013 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 2.2
37 */
38 public static String HistogramView_hideLostEvents;
39
40 /**
41 * The label for the current event time
42 * @deprecated As of 2.2, replaced with {@link #HistogramView_selectionStartLabel}
43 */
44 @Deprecated
45 public static String HistogramView_currentEventLabel;
46 /**
47 * The label for the selection start time
48 * @since 2.2
49 */
50 public static String HistogramView_selectionStartLabel;
51 /**
52 * The label for the selection end time
53 * @since 2.2
54 */
55 public static String HistogramView_selectionEndLabel;
56 /**
57 * The label for the window span.
58 */
59 public static String HistogramView_windowSpanLabel;
60 /**
61 * The tool tip text for the selection span.
62 * @since 2.2
63 */
64 public static String Histogram_selectionSpanToolTip;
65 /**
66 * The tool tip text for the bucket range.
67 * @since 2.2
68 */
69 public static String Histogram_bucketRangeToolTip;
70 /**
71 * The tool tip text for the event count.
72 * @since 2.2
73 */
74 public static String Histogram_eventCountToolTip;
75 /**
76 * The tool tip text for the lost event count.
77 * @since 2.2
78 */
79 public static String Histogram_lostEventCountToolTip;
80
81 // ------------------------------------------------------------------------
82 // Initializer
83 // ------------------------------------------------------------------------
84
85 static {
86 // initialize resource bundle
87 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
88 }
89
90 // ------------------------------------------------------------------------
91 // Constructor
92 // ------------------------------------------------------------------------
93
94 private Messages() {
95 }
96
97 }
This page took 0.044219 seconds and 6 git commands to generate.