tmf: Support + and - keys for histogram zoom
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.pcap.core / src / org / eclipse / linuxtools / tmf / pcap / core / trace / 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
13package org.eclipse.linuxtools.tmf.pcap.core.trace;
14
15import org.eclipse.jdt.annotation.Nullable;
16import org.eclipse.osgi.util.NLS;
17
18@SuppressWarnings("javadoc")
19public class Messages extends NLS {
20 private static final String BUNDLE_NAME = "org.eclipse.linuxtools.tmf.pcap.core.trace.messages"; //$NON-NLS-1$
21 public static @Nullable String PcapTrace_FileEndianness;
22 public static @Nullable String PcapTrace_LinkLayerHeaderType;
23 public static @Nullable String PcapTrace_MaxSnapLength;
24 public static @Nullable String PcapTrace_TimestampAccuracy;
25 public static @Nullable String PcapTrace_TimeZoneCorrection;
26 public static @Nullable String PcapTrace_Version;
27 static {
28 // initialize resource bundle
29 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
30 }
31
32 private Messages() {
33 }
34}
This page took 0.031039 seconds and 5 git commands to generate.