lttng.ust: Add the build-ID to the key of cache of addr2line calls
[deliverable/tracecompass.git] / tmf / org.eclipse.tracecompass.tmf.analysis.xml.ui / src / org / eclipse / tracecompass / tmf / analysis / xml / ui / views / timegraph / Messages.java
CommitLineData
1a23419e
FW
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
2bdf0193 13package org.eclipse.tracecompass.tmf.analysis.xml.ui.views.timegraph;
1a23419e
FW
14
15import 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")
23public class Messages extends NLS {
2bdf0193 24 private static final String BUNDLE_NAME = "org.eclipse.tracecompass.tmf.analysis.xml.ui.views.timegraph.messages"; //$NON-NLS-1$
1a23419e
FW
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.105425 seconds and 5 git commands to generate.