tmf/lttng: Remove unneeded (non-Javadoc) comments
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / views / histogram / Messages.java
CommitLineData
c392540b 1/*******************************************************************************
11252342 2 * Copyright (c) 2009, 2013 Ericsson
c8422608 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 */
3b38ea61 25public class Messages extends NLS {
c392540b
FC
26
27 // ------------------------------------------------------------------------
28 // Constants
29 // ------------------------------------------------------------------------
30
e0752744 31 private static final String BUNDLE_NAME = "org.eclipse.linuxtools.tmf.ui.views.histogram.messages"; //$NON-NLS-1$
c8422608 32
b544077e
BH
33 /**
34 * The label for the current event time
35 */
3b38ea61 36 public static String HistogramView_currentEventLabel;
b544077e
BH
37 /**
38 * The label for the window span.
39 */
c392540b 40 public static String HistogramView_windowSpanLabel;
c8422608 41
c392540b
FC
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
3b38ea61 58}
This page took 0.046692 seconds and 5 git commands to generate.