tmf: Use tabs in statistics view for each traces
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng.jni / src / org / eclipse / linuxtools / internal / lttng / jni_v2_3 / JniEvent_v2_3.java
CommitLineData
ce38c104 1package org.eclipse.linuxtools.internal.lttng.jni_v2_3;
3b7509b0
WB
2/*******************************************************************************
3 * Copyright (c) 2009 Ericsson
4 *
5 * All rights reserved. This program and the accompanying materials are
6 * made available under the terms of the Eclipse Public License v1.0 which
7 * accompanies this distribution, and is available at
8 * http://www.eclipse.org/legal/epl-v10.html
9 *
10 * Contributors:
11 * William Bourque (wbourque@gmail.com) - Initial API and implementation
12 *******************************************************************************/
0152140d
ASL
13
14import java.util.HashMap;
15
ce38c104
FC
16import org.eclipse.linuxtools.internal.lttng.jni.common.Jni_C_Pointer_And_Library_Id;
17import org.eclipse.linuxtools.internal.lttng.jni.exception.JniException;
0152140d
ASL
18import org.eclipse.linuxtools.lttng.jni.JniEvent;
19import org.eclipse.linuxtools.lttng.jni.JniMarker;
20import org.eclipse.linuxtools.lttng.jni.JniTracefile;
0152140d 21
3b7509b0
WB
22/**
23 * <b><u>JniEvent_v2_3</u></b>
24 * <p>
25 * JniEvent version to support Lttng traceformat of version 2.3<br>
26 * This class extend abstract class JniEvent with (possibly) version specific implementation.<br>
27 * <p>
28 */
0152140d
ASL
29public class JniEvent_v2_3 extends JniEvent {
30
3b7509b0
WB
31 /*
32 * Forbid access to the default constructor
33 */
0152140d
ASL
34 protected JniEvent_v2_3() {
35 super();
36 }
5a5c2fc7 37
0152140d
ASL
38 public JniEvent_v2_3(JniEvent_v2_3 oldEvent) {
39 super(oldEvent);
40 }
41
c85e8cb2 42 public JniEvent_v2_3(Jni_C_Pointer_And_Library_Id newEventPtr, HashMap<Integer, JniMarker> newMarkersMap, JniTracefile newParentTracefile) throws JniException {
0152140d
ASL
43 super(newEventPtr, newMarkersMap, newParentTracefile);
44 }
5a5c2fc7 45
0152140d 46}
This page took 0.036683 seconds and 5 git commands to generate.