Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 95bb1647963a2700e060c291796abb8e65e941aa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
/*******************************************************************************
 * Copyright (c) 2009, 2014 Ericsson
 *
 * All rights reserved. This program and the accompanying materials are
 * made available under the terms of the Eclipse Public License v1.0 which
 * accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *   William Bourque - Initial API and implementation
 *   Francois Chouinard - Cleanup and refactoring
 *   Francois Chouinard - Moved from LTTng to TMF
 *   Patrick Tasse - Update for histogram selection range and tool tip
 *******************************************************************************/

package org.eclipse.tracecompass.tmf.ui.views.histogram;

import org.eclipse.osgi.util.NLS;

/**
 * Messages file for the histogram widgets.
 * <p>
 *
 * @author Francois Chouinard
 */
public class Messages extends NLS {

    // ------------------------------------------------------------------------
    // Constants
    // ------------------------------------------------------------------------

    private static final String BUNDLE_NAME = "org.eclipse.tracecompass.tmf.ui.views.histogram.messages"; //$NON-NLS-1$

    /**
     * The label for the Show Traces button
     */
    public static String HistogramView_showTraces;
    /**
     * The label for the Lost Events button
     */
    public static String HistogramView_hideLostEvents;
    /**
     * The label for the selection start time
     */
    public static String HistogramView_selectionStartLabel;
    /**
     * The label for the selection end time
     */
    public static String HistogramView_selectionEndLabel;
    /**
     * The label for the window span.
     */
    public static String HistogramView_windowSpanLabel;
    /**
     * The tool tip text for the selection span.
     */
    public static String Histogram_selectionSpanToolTip;
    /**
     * The tool tip text for the bucket range.
     */
    public static String Histogram_bucketRangeToolTip;
    /**
     * The tool tip text for the event count.
     */
    public static String Histogram_eventCountToolTip;
    /**
     * The tool tip text for the lost event count.
     */
    public static String Histogram_lostEventCountToolTip;

    // ------------------------------------------------------------------------
    // Initializer
    // ------------------------------------------------------------------------

    static {
        // initialize resource bundle
        NLS.initializeMessages(BUNDLE_NAME, Messages.class);
    }

    // ------------------------------------------------------------------------
    // Constructor
    // ------------------------------------------------------------------------

    private Messages() {
    }

}

Back to the top