tmf: Move plugins to their own sub-directory
[deliverable/tracecompass.git] / tmf / org.eclipse.tracecompass.tmf.ui / src / org / eclipse / tracecompass / 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.tracecompass.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 * @author Francois Chouinard
25 */
26 public class Messages extends NLS {
27
28 // ------------------------------------------------------------------------
29 // Constants
30 // ------------------------------------------------------------------------
31
32 private static final String BUNDLE_NAME = "org.eclipse.tracecompass.tmf.ui.views.histogram.messages"; //$NON-NLS-1$
33
34 /**
35 * The label for the Show Traces button
36 */
37 public static String HistogramView_showTraces;
38 /**
39 * The label for the Lost Events button
40 */
41 public static String HistogramView_hideLostEvents;
42 /**
43 * The label for the selection start time
44 */
45 public static String HistogramView_selectionStartLabel;
46 /**
47 * The label for the selection end time
48 */
49 public static String HistogramView_selectionEndLabel;
50 /**
51 * The label for the window span.
52 */
53 public static String HistogramView_windowSpanLabel;
54 /**
55 * The tool tip text for the selection span.
56 */
57 public static String Histogram_selectionSpanToolTip;
58 /**
59 * The tool tip text for the bucket range.
60 */
61 public static String Histogram_bucketRangeToolTip;
62 /**
63 * The tool tip text for the event count.
64 */
65 public static String Histogram_eventCountToolTip;
66 /**
67 * The tool tip text for the lost event count.
68 */
69 public static String Histogram_lostEventCountToolTip;
70
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
87 }
This page took 0.039502 seconds and 5 git commands to generate.