f7e3bfde0d03391d352ad47cad93296c297a5b51
[deliverable/tracecompass.git] / tmf / org.eclipse.tracecompass.tmf.analysis.xml.ui / src / org / eclipse / tracecompass / tmf / analysis / xml / ui / views / timegraph / Messages.java
1 /*******************************************************************************
2 * Copyright (c) 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.analysis.xml.ui.views.timegraph;
14
15 import org.eclipse.osgi.util.NLS;
16
17 /**
18 * Message for the XML state system view
19 *
20 * @author Geneviève Bastien
21 */
22 @SuppressWarnings("javadoc")
23 public class Messages extends NLS {
24 private static final String BUNDLE_NAME = "org.eclipse.tracecompass.tmf.analysis.xml.ui.views.timegraph.messages"; //$NON-NLS-1$
25
26 public static String XmlPresentationProvider_MultipleStates;
27
28 /* Default text messages */
29 public static String XmlTimeGraphView_ColumnId;
30 public static String XmlTimeGraphView_ColumnName;
31 public static String XmlTimeGraphView_ColumnParentId;
32 public static String XmlTimeGraphView_DefaultTitle;
33
34 /* Text and tooltips of the view */
35 public static String XmlTimeGraphView_NextText;
36 public static String XmlTimeGraphView_NextTooltip;
37 public static String XmlTimeGraphView_PreviousInterval;
38 public static String XmlTimeGraphView_PreviousText;
39
40 /* Errors and warnings messages */
41 public static String XmlTimeGraphView_UselessEndPath;
42 static {
43 // initialize resource bundle
44 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
45 }
46
47 private Messages() {
48 }
49 }
This page took 0.031411 seconds and 4 git commands to generate.