e548eec6892715a2278e7720433d99af4f74d213
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.analysis.xml.ui / src / org / eclipse / linuxtools / internal / tmf / analysis / xml / ui / views / xychart / 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.linuxtools.internal.tmf.analysis.xml.ui.views.xychart;
14
15 import org.eclipse.jdt.annotation.Nullable;
16 import org.eclipse.osgi.util.NLS;
17
18 /**
19 * Externalized strings for the xml xy chart view package
20 *
21 * @author Geneviève Bastien
22 */
23 public class Messages extends NLS {
24 private static final String BUNDLE_NAME = "org.eclipse.linuxtools.internal.tmf.analysis.xml.ui.views.xychart.messages"; //$NON-NLS-1$
25 /** Default view title */
26 public static @Nullable String XmlXYView_DefaultTitle;
27
28 /** Default Viewer title */
29 public static @Nullable String XmlXYViewer_DefaultViewerTitle;
30 /** Default X axix text */
31 public static @Nullable String XmlXYViewer_DefaultXAxis;
32 /** Default Y axis text */
33 public static @Nullable String XmlXYViewer_DefaultYAxis;
34 static {
35 // initialize resource bundle
36 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
37 }
38
39 private Messages() {
40 }
41 }
This page took 0.038177 seconds and 4 git commands to generate.