[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
1 /*******************************************************************************
2 * Copyright (c) 2009, 2012 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 * @version 1.0
23 * @author Francois Chouinard
24 */
25 @SuppressWarnings("javadoc")
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 * The label for the current event time
36 */
37 public static String HistogramView_currentEventLabel;
38 /**
39 * The label for the window span.
40 */
41 public static String HistogramView_windowSpanLabel;
42
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
59 }
This page took 0.031834 seconds and 5 git commands to generate.