Remove all existing @since annotations
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.ui / src / org / eclipse / tracecompass / tmf / ui / views / histogram / Messages.java
CommitLineData
c392540b 1/*******************************************************************************
576f0a4e 2 * Copyright (c) 2009, 2014 Ericsson
c8422608 3 *
c392540b
FC
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
c8422608 8 *
c392540b
FC
9 * Contributors:
10 * William Bourque - Initial API and implementation
11 * Francois Chouinard - Cleanup and refactoring
e0752744 12 * Francois Chouinard - Moved from LTTng to TMF
720d67cb 13 * Patrick Tasse - Update for histogram selection range and tool tip
c392540b
FC
14 *******************************************************************************/
15
2bdf0193 16package org.eclipse.tracecompass.tmf.ui.views.histogram;
3b38ea61
FC
17
18import org.eclipse.osgi.util.NLS;
19
c392540b 20/**
b544077e 21 * Messages file for the histogram widgets.
c392540b 22 * <p>
95aa81ef 23 *
b544077e 24 * @author Francois Chouinard
c392540b 25 */
3b38ea61 26public class Messages extends NLS {
c392540b
FC
27
28 // ------------------------------------------------------------------------
29 // Constants
30 // ------------------------------------------------------------------------
31
2bdf0193 32 private static final String BUNDLE_NAME = "org.eclipse.tracecompass.tmf.ui.views.histogram.messages"; //$NON-NLS-1$
95aa81ef 33
2fc582d2 34 /**
ae09c4ad 35 * The label for the Show Traces button
2fc582d2
XR
36 */
37 public static String HistogramView_showTraces;
95aa81ef 38 /**
ae09c4ad 39 * The label for the Lost Events button
95aa81ef
JCK
40 */
41 public static String HistogramView_hideLostEvents;
720d67cb
PT
42 /**
43 * The label for the selection start time
720d67cb
PT
44 */
45 public static String HistogramView_selectionStartLabel;
46 /**
47 * The label for the selection end time
720d67cb
PT
48 */
49 public static String HistogramView_selectionEndLabel;
95aa81ef
JCK
50 /**
51 * The label for the window span.
52 */
c392540b 53 public static String HistogramView_windowSpanLabel;
720d67cb
PT
54 /**
55 * The tool tip text for the selection span.
720d67cb
PT
56 */
57 public static String Histogram_selectionSpanToolTip;
58 /**
59 * The tool tip text for the bucket range.
720d67cb
PT
60 */
61 public static String Histogram_bucketRangeToolTip;
62 /**
63 * The tool tip text for the event count.
720d67cb
PT
64 */
65 public static String Histogram_eventCountToolTip;
66 /**
67 * The tool tip text for the lost event count.
720d67cb
PT
68 */
69 public static String Histogram_lostEventCountToolTip;
c8422608 70
c392540b
FC
71 // ------------------------------------------------------------------------
72 // Initializer
73 // ------------------------------------------------------------------------
74
75 static {
76 // initialize resource bundle
77 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
78 }
79
80 // ------------------------------------------------------------------------
81 // Constructor
82 // ------------------------------------------------------------------------
83
84 private Messages() {
85 }
86
3b38ea61 87}
This page took 0.093827 seconds and 5 git commands to generate.