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
CommitLineData
c392540b 1/*******************************************************************************
11252342 2 * Copyright (c) 2009, 2013 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
c392540b
FC
13 *******************************************************************************/
14
e0752744 15package org.eclipse.linuxtools.tmf.ui.views.histogram;
3b38ea61
FC
16
17import org.eclipse.osgi.util.NLS;
18
c392540b 19/**
b544077e 20 * Messages file for the histogram widgets.
c392540b 21 * <p>
95aa81ef 22 *
b544077e
BH
23 * @version 1.0
24 * @author Francois Chouinard
c392540b 25 */
3b38ea61 26public class Messages extends NLS {
c392540b
FC
27
28 // ------------------------------------------------------------------------
29 // Constants
30 // ------------------------------------------------------------------------
31
95aa81ef
JCK
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 */
c392540b 45 public static String HistogramView_windowSpanLabel;
c8422608 46
c392540b
FC
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
3b38ea61 63}
This page took 0.0418539999999999 seconds and 5 git commands to generate.