[Tmf][Ctf] Add descriptive fail to import messages.
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core / src / org / eclipse / linuxtools / tmf / core / ctfadaptor / Messages.java
1 /*******************************************************************************
2 * Copyright (c) 2013 Ericsson.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
7 *
8 * Contributors:
9 * Matthew Khouzam - Initial API and implementation
10 *******************************************************************************/
11 package org.eclipse.linuxtools.tmf.core.ctfadaptor;
12
13 import org.eclipse.osgi.util.NLS;
14
15 /**
16 * @author Matthew Khouzam
17 * @since 2.0
18 */
19 @SuppressWarnings("javadoc")
20 public class Messages extends NLS {
21 private static final String BUNDLE_NAME = "org.eclipse.linuxtools.tmf.core.ctfadaptor.messages"; //$NON-NLS-1$
22 /**
23 * And error message
24 */
25 public static String CtfTmfTrace_MajorNotSet;
26 /**
27 * Read error
28 */
29 public static String CtfTmfTrace_ReadingError;
30 static {
31 // initialize resource bundle
32 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
33 }
34
35 private Messages() {
36 }
37 }
This page took 0.031477 seconds and 5 git commands to generate.