[Tmf][Ctf] Add descriptive fail to import messages.
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.kernel.core / src / org / eclipse / linuxtools / lttng2 / kernel / core / trace / 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 package org.eclipse.linuxtools.lttng2.kernel.core.trace;
12
13 import org.eclipse.osgi.util.NLS;
14
15 /**
16 * Messages
17 *
18 * @author Matthew Khouzam
19 * @since 2.0
20 */
21 @SuppressWarnings("javadoc")
22 public class Messages extends NLS {
23 private static final String BUNDLE_NAME = "org.eclipse.linuxtools.lttng2.kernel.core.trace.messages"; //$NON-NLS-1$
24 /**
25 * The domain is not "kernel"
26 */
27 public static String CtfKernelTrace_DomainError;
28 static {
29 // initialize resource bundle
30 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
31 }
32
33 private Messages() {
34 }
35 }
This page took 0.032836 seconds and 5 git commands to generate.