Move alltests plugin to the Trace Compass namespace
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.ctf.core / src / org / eclipse / linuxtools / tmf / ctf / core / 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
12 package org.eclipse.linuxtools.tmf.ctf.core;
13
14 import org.eclipse.osgi.util.NLS;
15
16 /**
17 * Message bundle for tmf.core.ctfadaptor
18 *
19 * @author Matthew Khouzam
20 * @since 2.0
21 */
22 public class Messages extends NLS {
23
24 private static final String BUNDLE_NAME = "org.eclipse.linuxtools.tmf.ctf.core.messages"; //$NON-NLS-1$
25
26 /** Buffer overflow detected
27 * @since 2.1*/
28 public static String CtfTmfTrace_BufferOverflowErrorMessage;
29
30 /**
31 * Text for host ID
32 *
33 * @since 3.1
34 */
35 public static String CtfTmfTrace_HostID;
36
37 /** Major version number not set */
38 public static String CtfTmfTrace_MajorNotSet;
39
40 /** Reading error */
41 public static String CtfTmfTrace_ReadingError;
42
43 /** No event */
44 public static String CtfTmfTrace_NoEvent;
45
46 /** Unsupported field type */
47 public static String CtfTmfEventField_UnsupportedType;
48
49 static {
50 // initialize resource bundle
51 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
52 }
53
54 private Messages() {
55 }
56 }
This page took 0.040304 seconds and 5 git commands to generate.