48963e57d87bfcb54f98390f56cb055f2b2dd889
[deliverable/tracecompass.git] / tmf / org.eclipse.tracecompass.tmf.analysis.xml.ui / src / org / eclipse / tracecompass / internal / tmf / analysis / xml / ui / module / Messages.java
1 /*******************************************************************************
2 * Copyright (c) 2016 Ericsson
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 package org.eclipse.tracecompass.internal.tmf.analysis.xml.ui.module;
10
11 import org.eclipse.osgi.util.NLS;
12
13 /**
14 * Message for the XML analysis output
15 *
16 * @author Jean-Christian Kouame
17 */
18 public class Messages extends NLS {
19 private static final String BUNDLE_NAME = "org.eclipse.tracecompass.internal.tmf.analysis.xml.ui.module.messages"; //$NON-NLS-1$
20 /** Density chart title */
21 public static String TmfXmlAnalysisOutputSource_DensityChartTitle;
22 /** Latency table */
23 public static String TmfXmlAnalysisOutputSource_LatencyTable;
24 /** Scatter graph title */
25 public static String TmfXmlAnalysisOutputSource_ScatterGraphTitle;
26
27 static {
28 // initialize resource bundle
29 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
30 }
31
32 private Messages() {
33 }
34 }
This page took 0.041247 seconds and 5 git commands to generate.