f0dba7e393b92c3e64759c2686c8f70ae25f13b4
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core.tests / stubs / org / eclipse / linuxtools / tmf / tests / stubs / trace / xml / 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 implementation
11 *******************************************************************************/
12
13 package org.eclipse.linuxtools.tmf.tests.stubs.trace.xml;
14
15 import org.eclipse.osgi.util.NLS;
16
17 /**
18 * Externalized messages for the
19 * {@link org.eclipse.linuxtools.tmf.tests.stubs.trace.xml} package
20 *
21 * @author Geneviève Bastien
22 */
23 @SuppressWarnings("javadoc")
24 public class Messages extends NLS {
25 private static final String BUNDLE_NAME = "org.eclipse.linuxtools.tmf.tests.stubs.trace.xml.messages"; //$NON-NLS-1$
26
27 public static String TmfDevelopmentTrace_FileNotFound;
28 public static String TmfDevelopmentTrace_IoError;
29 public static String TmfDevelopmentTrace_ValidationError;
30 static {
31 // initialize resource bundle
32 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
33 }
34
35 private Messages() {
36 }
37 }
This page took 0.031876 seconds and 4 git commands to generate.