tmf : Update the histogram to handle lost events correctly
[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 *******************************************************************************/
14
15 package org.eclipse.linuxtools.tmf.ui.views.histogram;
16
17 import org.eclipse.osgi.util.NLS;
18
19 /**
20 * Messages file for the histogram widgets.
21 * <p>
22 *
23 * @version 1.0
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.linuxtools.tmf.ui.views.histogram.messages"; //$NON-NLS-1$
33
34 /**
35 * @since 2.1
36 */
37 public static String HistogramView_hideLostEvents;
38 /**
39 * The label for the current event time
40 */
41 public static String HistogramView_currentEventLabel;
42 /**
43 * The label for the window span.
44 */
45 public static String HistogramView_windowSpanLabel;
46
47 // ------------------------------------------------------------------------
48 // Initializer
49 // ------------------------------------------------------------------------
50
51 static {
52 // initialize resource bundle
53 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
54 }
55
56 // ------------------------------------------------------------------------
57 // Constructor
58 // ------------------------------------------------------------------------
59
60 private Messages() {
61 }
62
63 }
This page took 0.034365 seconds and 5 git commands to generate.