TMF: Consolidate some view code into the AbstractTimeGraphView
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / views / timegraph / Messages.java
1 /*******************************************************************************
2 * Copyright (c) 2013 École Polytechnique de Montréal
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 * Geneviève Bastien - Initial API and implementation
11 *******************************************************************************/
12
13 package org.eclipse.linuxtools.tmf.ui.views.timegraph;
14
15 import org.eclipse.osgi.util.NLS;
16
17 /**
18 * Generic messages for the bar charts
19 *
20 * @since 2.1
21 */
22 @SuppressWarnings("javadoc")
23 public class Messages extends NLS {
24 private static final String BUNDLE_NAME = "org.eclipse.linuxtools.tmf.ui.views.timegraph.messages"; //$NON-NLS-1$
25
26 public static String AbstractTimeGraphtView_NextText;
27 public static String AbstractTimeGraphView_NextTooltip;
28 public static String AbstractTimeGraphView_PreviousText;
29 public static String AbstractTimeGraphView_PreviousTooltip;
30 public static String TimeGraphPresentationProvider_multipleStates;
31 static {
32 // initialize resource bundle
33 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
34 }
35
36 private Messages() {
37 }
38 }
This page took 0.031053 seconds and 5 git commands to generate.