Merge branch 'master' into lttng-luna
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core / src / org / eclipse / linuxtools / tmf / core / ctfadaptor / Messages.java
CommitLineData
a94410d9
MK
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 *******************************************************************************/
94d4821e 11
a94410d9
MK
12package org.eclipse.linuxtools.tmf.core.ctfadaptor;
13
14import org.eclipse.osgi.util.NLS;
15
16/**
94d4821e
AM
17 * Message bundle for tmf.core.ctfadaptor
18 *
a94410d9
MK
19 * @author Matthew Khouzam
20 * @since 2.0
21 */
a94410d9 22public class Messages extends NLS {
94d4821e 23
a94410d9 24 private static final String BUNDLE_NAME = "org.eclipse.linuxtools.tmf.core.ctfadaptor.messages"; //$NON-NLS-1$
94d4821e 25
96c0f2af 26 /** Buffer overflow detected
4b121c48 27 * @since 2.1*/
96c0f2af
MK
28 public static String CtfTmfTrace_BufferOverflowErrorMessage;
29
94d4821e 30 /** Major version number not set */
a94410d9 31 public static String CtfTmfTrace_MajorNotSet;
94d4821e
AM
32
33 /** Reading error */
a94410d9 34 public static String CtfTmfTrace_ReadingError;
94d4821e 35
b5354daa
MAL
36 /** No event */
37 public static String CtfTmfTrace_NoEvent;
38
a94410d9
MK
39 static {
40 // initialize resource bundle
41 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
42 }
43
44 private Messages() {
45 }
46}
This page took 0.029762 seconds and 5 git commands to generate.