tmf: Add configurable marker event source
[deliverable/tracecompass.git] / tmf / org.eclipse.tracecompass.tmf.ui / src / org / eclipse / tracecompass / tmf / ui / views / timegraph / Messages.java
CommitLineData
4999a196 1/*******************************************************************************
c1ed0a0c 2 * Copyright (c) 2013, 2017 École Polytechnique de Montréal
4999a196
GB
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
2bdf0193 13package org.eclipse.tracecompass.tmf.ui.views.timegraph;
4999a196
GB
14
15import org.eclipse.osgi.util.NLS;
16
17/**
18 * Generic messages for the bar charts
4999a196
GB
19 */
20@SuppressWarnings("javadoc")
21public class Messages extends NLS {
2bdf0193 22 private static final String BUNDLE_NAME = "org.eclipse.tracecompass.tmf.ui.views.timegraph.messages"; //$NON-NLS-1$
4999a196
GB
23
24 public static String AbstractTimeGraphtView_NextText;
2621bb64
GB
25 /**
26 * Build Job title
27 * @since 2.1
28 */
29 public static String AbstractTimeGraphView_BuildJob;
30
c1ed0a0c
PT
31 /** @since 2.3 */
32 public static String AbstractTimeGraphView_MarkerSetEditActionText;
33 /** @since 2.3 */
34 public static String AbstractTimeGraphView_MarkerSetMenuText;
35 /** @since 2.3 */
36 public static String AbstractTimeGraphView_MarkerSetNoneActionText;
4999a196
GB
37 public static String AbstractTimeGraphView_NextTooltip;
38 public static String AbstractTimeGraphView_PreviousText;
39 public static String AbstractTimeGraphView_PreviousTooltip;
40 public static String TimeGraphPresentationProvider_multipleStates;
41 static {
42 // initialize resource bundle
43 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
44 }
45
46 private Messages() {
47 }
48}
This page took 0.103594 seconds and 5 git commands to generate.