a2e3ea57296ced5856add2733d1bda72e300cc94
[deliverable/tracecompass.git] / org.eclipse.tracecompass.lttng2.ust.core / src / org / eclipse / tracecompass / lttng2 / ust / core / trace / Messages.java
1 /*******************************************************************************
2 * Copyright (c) 2013, 2014 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.tracecompass.lttng2.ust.core.trace;
13
14 import org.eclipse.osgi.util.NLS;
15
16 /**
17 * Message bundle for lttng2.kernel.core.trace
18 *
19 * @author Matthew Khouzam
20 */
21 public class Messages extends NLS {
22
23 private static final String BUNDLE_NAME = "org.eclipse.tracecompass.lttng2.ust.core.trace.messages"; //$NON-NLS-1$
24
25 /**
26 * The domain is not "ust"
27 */
28 public static String LttngUstTrace_DomainError;
29
30 /**
31 * Malformed trace (buffer overflow maybe?)
32 */
33 public static String LttngUstTrace_MalformedTrace;
34
35 /**
36 * Trace read error
37 */
38 public static String LttngUstTrace_TraceReadError;
39
40 static {
41 // initialize resource bundle
42 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
43 }
44
45 private Messages() {
46 }
47 }
This page took 0.035829 seconds and 5 git commands to generate.