[Tmf][Ctf] Add descriptive fail to import messages.
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / views / histogram / Messages.java
CommitLineData
c392540b 1/*******************************************************************************
c8422608
AM
2 * Copyright (c) 2009, 2012 Ericsson
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>
b544077e
BH
22 * @version 1.0
23 * @author Francois Chouinard
c392540b 24 */
a94410d9 25@SuppressWarnings("javadoc")
3b38ea61 26public class Messages extends NLS {
c392540b
FC
27
28 // ------------------------------------------------------------------------
29 // Constants
30 // ------------------------------------------------------------------------
31
e0752744 32 private static final String BUNDLE_NAME = "org.eclipse.linuxtools.tmf.ui.views.histogram.messages"; //$NON-NLS-1$
c8422608 33
b544077e
BH
34 /**
35 * The label for the current event time
36 */
3b38ea61 37 public static String HistogramView_currentEventLabel;
b544077e
BH
38 /**
39 * The label for the window span.
40 */
c392540b 41 public static String HistogramView_windowSpanLabel;
c8422608 42
c392540b
FC
43 // ------------------------------------------------------------------------
44 // Initializer
45 // ------------------------------------------------------------------------
46
47 static {
48 // initialize resource bundle
49 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
50 }
51
52 // ------------------------------------------------------------------------
53 // Constructor
54 // ------------------------------------------------------------------------
55
56 private Messages() {
57 }
58
3b38ea61 59}
This page took 0.068313 seconds and 5 git commands to generate.