lttng: Use switch-on-strings for the kernel state provider
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / internal / tmf / ui / parsers / custom / Messages.java
CommitLineData
a94410d9
MK
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 *******************************************************************************/
11package org.eclipse.linuxtools.internal.tmf.ui.parsers.custom;
12
13import org.eclipse.osgi.util.NLS;
14
15@SuppressWarnings("javadoc")
16public class Messages extends NLS {
17 private static final String BUNDLE_NAME = "org.eclipse.linuxtools.internal.tmf.ui.parsers.custom.messages"; //$NON-NLS-1$
18 public static String CustomTrace_FileNotFound;
19 static {
20 // initialize resource bundle
21 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
22 }
23
24 private Messages() {
25 }
26}
This page took 0.029068 seconds and 5 git commands to generate.