Update Javadoc for the public API in legacy LTTng
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / views / histogram / Messages.java
CommitLineData
c392540b 1/*******************************************************************************
e0752744 2 * Copyright (c) 2009, 2011, 2012 Ericsson
c392540b
FC
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
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
FC
19/**
20 * <b><u>Messages</u></b>
21 * <p>
22 */
3b38ea61 23public class Messages extends NLS {
c392540b
FC
24
25 // ------------------------------------------------------------------------
26 // Constants
27 // ------------------------------------------------------------------------
28
e0752744 29 private static final String BUNDLE_NAME = "org.eclipse.linuxtools.tmf.ui.views.histogram.messages"; //$NON-NLS-1$
c392540b 30
3b38ea61 31 public static String HistogramView_currentEventLabel;
c392540b
FC
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
3b38ea61 50}
This page took 0.032231 seconds and 5 git commands to generate.