tmf : Add latency table view for the pattern analysis
[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 /** Latency table */
21 public static String TmfXmlAnalysisOutputSource_LatencyTable;
22
23 static {
24 // initialize resource bundle
25 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
26 }
27
28 private Messages() {
29 }
30 }
This page took 0.040459 seconds and 5 git commands to generate.