TMF: Add support of aspects to TmfXmlStubTrace
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.core.tests / stubs / org / eclipse / tracecompass / tmf / tests / stubs / trace / xml / Messages.java
CommitLineData
1d8ab692
GB
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
2bdf0193 13package org.eclipse.tracecompass.tmf.tests.stubs.trace.xml;
1d8ab692 14
69ff4f26 15import org.eclipse.jdt.annotation.Nullable;
1d8ab692
GB
16import org.eclipse.osgi.util.NLS;
17
18/**
19 * Externalized messages for the
2bdf0193 20 * {@link org.eclipse.tracecompass.tmf.tests.stubs.trace.xml} package
1d8ab692
GB
21 *
22 * @author Geneviève Bastien
23 */
24@SuppressWarnings("javadoc")
25public class Messages extends NLS {
2bdf0193 26 private static final String BUNDLE_NAME = "org.eclipse.tracecompass.tmf.tests.stubs.trace.xml.messages"; //$NON-NLS-1$
1d8ab692 27
69ff4f26
GB
28 public static @Nullable String TmfDevelopmentTrace_FileNotFound;
29 public static @Nullable String TmfDevelopmentTrace_IoError;
30 public static @Nullable String TmfDevelopmentTrace_ValidationError;
1d8ab692
GB
31 static {
32 // initialize resource bundle
33 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
34 }
35
36 private Messages() {
37 }
38}
This page took 0.076671 seconds and 5 git commands to generate.