tmf: Handle 'null' active pages in views
[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 * Messages file for the histogram widgets.
21 * <p>
22 * @version 1.0
23 * @author Francois Chouinard
24 */
25 public class Messages extends NLS {
26
27 // ------------------------------------------------------------------------
28 // Constants
29 // ------------------------------------------------------------------------
30
31 private static final String BUNDLE_NAME = "org.eclipse.linuxtools.tmf.ui.views.histogram.messages"; //$NON-NLS-1$
32
33 /**
34 * The label for the current event time
35 */
36 public static String HistogramView_currentEventLabel;
37 /**
38 * The label for the window span.
39 */
40 public static String HistogramView_windowSpanLabel;
41
42 // ------------------------------------------------------------------------
43 // Initializer
44 // ------------------------------------------------------------------------
45
46 static {
47 // initialize resource bundle
48 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
49 }
50
51 // ------------------------------------------------------------------------
52 // Constructor
53 // ------------------------------------------------------------------------
54
55 private Messages() {
56 }
57
58 }
This page took 0.033092 seconds and 5 git commands to generate.