Move alltests plugin to the Trace Compass namespace
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.pcap.core / src / org / eclipse / linuxtools / internal / tmf / pcap / core / event / Messages.java
CommitLineData
b6eb4dce
VP
1/*******************************************************************************
2 * Copyright (c) 2014 Ericsson
3 *
4 * All rights reserved. This program and the accompanying materials are
5 * made available under the terms of the Eclipse Public License v1.0 which
6 * accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 *
9 * Contributors:
10 * Vincent Perot - Initial API and implementation
11 *******************************************************************************/
12
93d1d135 13package org.eclipse.linuxtools.internal.tmf.pcap.core.event;
b6eb4dce
VP
14
15import org.eclipse.jdt.annotation.NonNullByDefault;
16import org.eclipse.jdt.annotation.Nullable;
17import org.eclipse.osgi.util.NLS;
18
19@NonNullByDefault(false)
20@SuppressWarnings("javadoc")
21public class Messages extends NLS {
93d1d135
AM
22
23 private static final String BUNDLE_NAME = "org.eclipse.linuxtools.internal.tmf.pcap.core.event.messages"; //$NON-NLS-1$
24
b6eb4dce
VP
25 public static @Nullable String PcapEventType_DefaultContext;
26 public static @Nullable String PcapEventType_DefaultTypeID;
93d1d135 27
b6eb4dce
VP
28 static {
29 // initialize resource bundle
30 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
31 }
32
33 private Messages() {
34 }
35}
This page took 0.03374 seconds and 5 git commands to generate.