Skip to main content
summaryrefslogtreecommitdiffstats
blob: ac6368eb8808126e03dec4d99f4206e4b2d27e71 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package org.eclipse.linuxtools.lttng.jni_v2_3;
/*******************************************************************************
 * Copyright (c) 2009 Ericsson
 * 
 * All rights reserved. This program and the accompanying materials are
 * made available under the terms of the Eclipse Public License v1.0 which
 * accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors:
 *   William Bourque (wbourque@gmail.com) - Initial API and implementation
 *******************************************************************************/

import java.util.HashMap;

import org.eclipse.linuxtools.lttng.jni.JniEvent;
import org.eclipse.linuxtools.lttng.jni.JniMarker;
import org.eclipse.linuxtools.lttng.jni.JniTracefile;
import org.eclipse.linuxtools.lttng.jni.common.Jni_C_Pointer_And_Library_Id;
import org.eclipse.linuxtools.lttng.jni.exception.JniException;

/**
 * <b><u>JniEvent_v2_3</u></b>
 * <p>
 * JniEvent version to support Lttng traceformat of version 2.3<br>
 * This class extend abstract class JniEvent with (possibly) version specific implementation.<br>
 * <p>
 */
public class JniEvent_v2_3 extends JniEvent {
	
	/*
	 * Forbid access to the default constructor
	 */
	protected JniEvent_v2_3() {
		super();
    }
	
	
	public JniEvent_v2_3(JniEvent_v2_3 oldEvent) {
		super(oldEvent);
	}
    
    public JniEvent_v2_3(Jni_C_Pointer_And_Library_Id newEventPtr, HashMap<Integer, JniMarker> newMarkersMap, JniTracefile newParentTracefile) throws JniException {
    	super(newEventPtr, newMarkersMap, newParentTracefile);
    }
}

Back to the top