ctf: Make CtfTmfTrace trimmable
[deliverable/tracecompass.git] / ctf / org.eclipse.tracecompass.tmf.ctf.core / src / org / eclipse / tracecompass / tmf / ctf / core / trace / Messages.java
CommitLineData
a94410d9 1/*******************************************************************************
9722e5d7 2 * Copyright (c) 2014 Ericsson.
a94410d9
MK
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
9722e5d7 12package org.eclipse.tracecompass.tmf.ctf.core.trace;
a94410d9
MK
13
14import org.eclipse.osgi.util.NLS;
15
16/**
9722e5d7 17 * Message bundle for tmf.ctf.core.trace
94d4821e 18 *
a94410d9 19 * @author Matthew Khouzam
cbe9455f 20 * @noreference Messages class
a94410d9 21 */
a94410d9 22public class Messages extends NLS {
94d4821e 23
9722e5d7 24 private static final String BUNDLE_NAME = "org.eclipse.tracecompass.tmf.ctf.core.trace.messages"; //$NON-NLS-1$
94d4821e 25
9722e5d7 26 /** Buffer overflow detected */
96c0f2af
MK
27 public static String CtfTmfTrace_BufferOverflowErrorMessage;
28
9722e5d7 29 /** Text for host ID */
2db2b43a
GB
30 public static String CtfTmfTrace_HostID;
31
94d4821e 32 /** Major version number not set */
a94410d9 33 public static String CtfTmfTrace_MajorNotSet;
94d4821e
AM
34
35 /** Reading error */
a94410d9 36 public static String CtfTmfTrace_ReadingError;
94d4821e 37
b5354daa
MAL
38 /** No event */
39 public static String CtfTmfTrace_NoEvent;
40
cbe9455f
AM
41 /** Invoking Babeltrace message */
42 public static String CtfTmfTrace_InvokingBabeltrace;
43
44 /** Required Babeltrace 2 binary not found */
45 public static String CtfTmfTrace_BabelTrace2NotFound;
46
a94410d9
MK
47 static {
48 // initialize resource bundle
49 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
50 }
51
52 private Messages() {
53 }
54}
This page took 0.098792 seconds and 5 git commands to generate.