Generalize and move the Histogram view from LTTng to TMF
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / views / histogram / Messages.java
1 /*******************************************************************************
2 * Copyright (c) 2009, 2011, 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 * <b><u>Messages</u></b>
21 * <p>
22 */
23 public class Messages extends NLS {
24
25 // ------------------------------------------------------------------------
26 // Constants
27 // ------------------------------------------------------------------------
28
29 private static final String BUNDLE_NAME = "org.eclipse.linuxtools.tmf.ui.views.histogram.messages"; //$NON-NLS-1$
30
31 public static String HistogramView_currentEventLabel;
32 public static String HistogramView_windowSpanLabel;
33
34 // ------------------------------------------------------------------------
35 // Initializer
36 // ------------------------------------------------------------------------
37
38 static {
39 // initialize resource bundle
40 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
41 }
42
43 // ------------------------------------------------------------------------
44 // Constructor
45 // ------------------------------------------------------------------------
46
47 private Messages() {
48 }
49
50 }
This page took 0.03072 seconds and 5 git commands to generate.