Import lttng.kernel.core plugins from Scope
[deliverable/tracecompass.git] / lttng / org.lttng.scope.lttng.kernel.core / src / org / lttng / scope / lttng / kernel / core / trace / Messages.java
CommitLineData
af3275f8
AM
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
12package org.lttng.scope.lttng.kernel.core.trace;
13
14import org.eclipse.osgi.util.NLS;
15
16/**
17 * Message bundle for lttng2.kernel.core.trace
18 *
19 * @author Matthew Khouzam
20 * @noreference Messages class
21 */
22@SuppressWarnings("javadoc")
23public class Messages extends NLS {
24
25 private static final String BUNDLE_NAME = Messages.class.getPackage().getName() + ".messages"; //$NON-NLS-1$
26
27 public static String LttngKernelTrace_DomainError;
28 public static String LttngKernelTrace_MalformedTrace;
29 public static String LttngKernelTrace_TraceReadError;
30
31 static {
32 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
33 }
34
35 private Messages() {
36 }
37}
This page took 0.025025 seconds and 5 git commands to generate.