tmf: Add XML analysis helper properties
[deliverable/tracecompass.git] / tmf / 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 /** Property name for file
26 * @since 2.0
27 */
28 public static String XmlModuleHelper_PropertyFile;
29
30 /** Property name for type
31 * @since 2.0
32 */
33 public static String XmlModuleHelper_PropertyType;
34
35 /** Error copying XML file to workspace folder */
36 public static String XmlUtils_ErrorCopyingFile;
37 /** XML parse error */
38 public static String XmlUtils_XmlParseError;
39 /** Error occurred while validating XML */
40 public static String XmlUtils_XmlValidateError;
41 /** XML validation error */
42 public static String XmlUtils_XmlValidationError;
43
44 static {
45 // initialize resource bundle
46 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
47 }
48
49 private Messages() {
50 }
51 }
This page took 0.03452 seconds and 5 git commands to generate.