tmf.ui: Use a job for the time graph view's build thread
[deliverable/tracecompass.git] / tmf / org.eclipse.tracecompass.tmf.ui / src / org / eclipse / tracecompass / tmf / ui / views / timegraph / Messages.java
1 /*******************************************************************************
2 * Copyright (c) 2013, 2014 É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.tracecompass.tmf.ui.views.timegraph;
14
15 import org.eclipse.osgi.util.NLS;
16
17 /**
18 * Generic messages for the bar charts
19 */
20 @SuppressWarnings("javadoc")
21 public class Messages extends NLS {
22 private static final String BUNDLE_NAME = "org.eclipse.tracecompass.tmf.ui.views.timegraph.messages"; //$NON-NLS-1$
23
24 public static String AbstractTimeGraphtView_NextText;
25 /**
26 * Build Job title
27 * @since 2.1
28 */
29 public static String AbstractTimeGraphView_BuildJob;
30
31 public static String AbstractTimeGraphView_NextTooltip;
32 public static String AbstractTimeGraphView_PreviousText;
33 public static String AbstractTimeGraphView_PreviousTooltip;
34 public static String TimeGraphPresentationProvider_multipleStates;
35 static {
36 // initialize resource bundle
37 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
38 }
39
40 private Messages() {
41 }
42 }
This page took 0.036466 seconds and 5 git commands to generate.