tmf: Integration of the pcap parser within TMF
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.pcap.ui / src / org / eclipse / linuxtools / tmf / pcap / ui / stream / Messages.java
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
13 package org.eclipse.linuxtools.tmf.pcap.ui.stream;
14
15 import org.eclipse.jdt.annotation.Nullable;
16 import org.eclipse.osgi.util.NLS;
17
18 @SuppressWarnings("javadoc")
19 public class Messages extends NLS {
20 private static final String BUNDLE_NAME = "org.eclipse.linuxtools.tmf.pcap.ui.stream.messages"; //$NON-NLS-1$
21 public static @Nullable String StreamListView_BPSAtoB;
22 public static @Nullable String StreamListView_BPSBtoA;
23 public static @Nullable String StreamListView_BytesAtoB;
24 public static @Nullable String StreamListView_BytesBtoA;
25 public static @Nullable String StreamListView_Clear;
26 public static @Nullable String StreamListView_Duration;
27 public static @Nullable String StreamListView_EndpointA;
28 public static @Nullable String StreamListView_EndpointB;
29 public static @Nullable String StreamListView_ExtractAsFilter;
30 public static @Nullable String StreamListView_FilterName_Stream;
31 public static @Nullable String StreamListView_FollowStream;
32 public static @Nullable String StreamListView_ID;
33 public static @Nullable String StreamListView_PacketsAtoB;
34 public static @Nullable String StreamListView_PacketsBtoA;
35 public static @Nullable String StreamListView_StartTime;
36 public static @Nullable String StreamListView_StopTime;
37 public static @Nullable String StreamListView_TotalBytes;
38 public static @Nullable String StreamListView_TotalPackets;
39 static {
40 // initialize resource bundle
41 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
42 }
43
44 private Messages() {
45 }
46 }
This page took 0.030476 seconds and 5 git commands to generate.