ss: Move plugins to Trace Compass namespace
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ctf.core / src / org / eclipse / linuxtools / tmf / ctf / core / 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
91e7f946 12package org.eclipse.linuxtools.tmf.ctf.core;
a94410d9
MK
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
91e7f946 24 private static final String BUNDLE_NAME = "org.eclipse.linuxtools.tmf.ctf.core.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
2db2b43a
GB
30 /**
31 * Text for host ID
32 *
33 * @since 3.1
34 */
35 public static String CtfTmfTrace_HostID;
36
94d4821e 37 /** Major version number not set */
a94410d9 38 public static String CtfTmfTrace_MajorNotSet;
94d4821e
AM
39
40 /** Reading error */
a94410d9 41 public static String CtfTmfTrace_ReadingError;
94d4821e 42
b5354daa
MAL
43 /** No event */
44 public static String CtfTmfTrace_NoEvent;
45
91e7f946
AM
46 /** Unsupported field type */
47 public static String CtfTmfEventField_UnsupportedType;
48
a94410d9
MK
49 static {
50 // initialize resource bundle
51 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
52 }
53
54 private Messages() {
55 }
56}
This page took 0.043679 seconds and 5 git commands to generate.