Refactor the Histogram View (Bug352885)
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng.ui / src / org / eclipse / linuxtools / lttng / ui / views / histogram / Messages.java
1 /*******************************************************************************
2 * Copyright (c) 2009, 2011 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 *******************************************************************************/
13
14 package org.eclipse.linuxtools.lttng.ui.views.histogram;
15
16 import org.eclipse.osgi.util.NLS;
17
18 /**
19 * <b><u>Messages</u></b>
20 * <p>
21 */
22 public class Messages extends NLS {
23
24 // ------------------------------------------------------------------------
25 // Constants
26 // ------------------------------------------------------------------------
27
28 private static final String BUNDLE_NAME = "org.eclipse.linuxtools.lttng.ui.views.histogram.messages"; //$NON-NLS-1$
29
30 public static String HistogramView_currentEventLabel;
31 public static String HistogramView_windowSpanLabel;
32
33 // ------------------------------------------------------------------------
34 // Initializer
35 // ------------------------------------------------------------------------
36
37 static {
38 // initialize resource bundle
39 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
40 }
41
42 // ------------------------------------------------------------------------
43 // Constructor
44 // ------------------------------------------------------------------------
45
46 private Messages() {
47 }
48
49 }
This page took 0.030433 seconds and 5 git commands to generate.