Copyright header update, 2015 edition
[deliverable/tracecompass.git] / org.eclipse.tracecompass.lttng2.kernel.core / src / org / eclipse / tracecompass / lttng2 / kernel / core / trace / Messages.java
CommitLineData
a94410d9 1/*******************************************************************************
ed902a2b 2 * Copyright (c) 2013, 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
9bc60be7 12package org.eclipse.tracecompass.lttng2.kernel.core.trace;
a94410d9
MK
13
14import org.eclipse.osgi.util.NLS;
15
16/**
94d4821e 17 * Message bundle for lttng2.kernel.core.trace
a94410d9
MK
18 *
19 * @author Matthew Khouzam
20 * @since 2.0
21 */
a94410d9 22public class Messages extends NLS {
94d4821e 23
9bc60be7 24 private static final String BUNDLE_NAME = "org.eclipse.tracecompass.lttng2.kernel.core.trace.messages"; //$NON-NLS-1$
94d4821e 25
a94410d9
MK
26 /**
27 * The domain is not "kernel"
28 */
d3ba47d4 29 public static String LttngKernelTrace_DomainError;
96c0f2af
MK
30 /**
31 * Malformed trace (buffer overflow maybe?)
4b121c48 32 * @since 2.1
96c0f2af
MK
33 */
34 public static String LttngKernelTrace_MalformedTrace;
35 /**
36 * Trace read error
4b121c48 37 * @since 2.1
96c0f2af
MK
38 */
39 public static String LttngKernelTrace_TraceReadError;
94d4821e 40
a94410d9
MK
41 static {
42 // initialize resource bundle
43 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
44 }
45
46 private Messages() {
47 }
48}
This page took 0.063671 seconds and 5 git commands to generate.