[Tmf][Ctf] Add descriptive fail to import messages.
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core.tests / stubs / org / eclipse / linuxtools / tmf / tests / stubs / trace / Messages.java
1 /*******************************************************************************
2 * Copyright (c) 2013 Ericsson
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 * Matthew Khouzam - Initial API and implementation
11 *******************************************************************************/
12 package org.eclipse.linuxtools.tmf.tests.stubs.trace;
13
14 import org.eclipse.osgi.util.NLS;
15
16 /**
17 * @author Matthew Khouzam
18 * @since 2.0
19 */
20 @SuppressWarnings("javadoc")
21 public class Messages extends NLS {
22 private static final String BUNDLE_NAME = "org.eclipse.linuxtools.tmf.tests.stubs.trace.messages"; //$NON-NLS-1$
23 /**
24 * File not found exception
25 */
26 public static String TmfTraceStub_FileNotFound;
27 static {
28 // initialize resource bundle
29 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
30 }
31
32 private Messages() {
33 }
34 }
This page took 0.035276 seconds and 5 git commands to generate.