tmf : Add latency scatter graph 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 / views / latency / 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.views.latency;
10
11 import org.eclipse.osgi.util.NLS;
12
13 /**
14 * Message for XML analysis latency views
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.views.latency.messages"; //$NON-NLS-1$
20 /**
21 * Scatter graph title
22 */
23 public static String PatternLatencyViews_ScatterGraphTitle;
24 /**
25 * Scatter graph X label
26 */
27 public static String PatternLatencyViews_ScatterGraphXLabel;
28 /**
29 * Scatter graph Y label
30 */
31 public static String PatternLatencyViews_ScatterGraphYLabel;
32 static {
33 // initialize resource bundle
34 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
35 }
36
37 private Messages() {
38 }
39 }
This page took 0.037909 seconds and 5 git commands to generate.