3c637ff17aa452488a6676fd9f15c9948d2c05e3
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.analysis.xml.core / src / org / eclipse / tracecompass / tmf / analysis / xml / core / module / 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.tracecompass.tmf.analysis.xml.core.module;
14
15 import org.eclipse.osgi.util.NLS;
16
17 /**
18 * Externalized messages for the XML analysis module package
19 *
20 * @author Geneviève Bastien
21 */
22 public class Messages extends NLS {
23 private static final String BUNDLE_NAME = "org.eclipse.tracecompass.tmf.analysis.xml.core.module.messages"; //$NON-NLS-1$
24
25 /** Error copying XML file to workspace folder */
26 public static String XmlUtils_ErrorCopyingFile;
27 /** XML parse error */
28 public static String XmlUtils_XmlParseError;
29 /** Error occurred while validating XML */
30 public static String XmlUtils_XmlValidateError;
31 /** XML validation error */
32 public static String XmlUtils_XmlValidationError;
33
34 static {
35 // initialize resource bundle
36 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
37 }
38
39 private Messages() {
40 }
41 }
This page took 0.031197 seconds and 4 git commands to generate.