~ubuntu-branches/ubuntu/trusty/eclipse-linuxtools/trusty

« back to all changes in this revision

Viewing changes to lttng/org.eclipse.linuxtools.lttng.jni/src/org/eclipse/linuxtools/internal/lttng/jni_v2_6/JniEvent_v2_6.java

  • Committer: Package Import Robot
  • Author(s): Jakub Adam
  • Date: 2012-06-29 12:07:30 UTC
  • Revision ID: package-import@ubuntu.com-20120629120730-bfri1xys1i71dpn6
Tags: upstream-1.0.0
ImportĀ upstreamĀ versionĀ 1.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package org.eclipse.linuxtools.internal.lttng.jni_v2_6;
 
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
 *******************************************************************************/
 
13
 
 
14
import java.util.HashMap;
 
15
 
 
16
import org.eclipse.linuxtools.internal.lttng.jni.common.Jni_C_Pointer_And_Library_Id;
 
17
import org.eclipse.linuxtools.internal.lttng.jni.exception.JniException;
 
18
import org.eclipse.linuxtools.lttng.jni.JniEvent;
 
19
import org.eclipse.linuxtools.lttng.jni.JniMarker;
 
20
import org.eclipse.linuxtools.lttng.jni.JniTracefile;
 
21
 
 
22
/**
 
23
 * <b><u>JniEvent_v2_6</u></b>
 
24
 * <p>
 
25
 * JniEvent version to support Lttng traceformat of version 2.6<br>
 
26
 * This class extend abstract class JniEvent with (possibly) version specific implementation.<br>
 
27
 * <p>
 
28
 */
 
29
public class JniEvent_v2_6 extends JniEvent {
 
30
        
 
31
        /*
 
32
         * Forbid access to the default constructor
 
33
         */
 
34
        protected JniEvent_v2_6() {
 
35
                super();
 
36
    }
 
37
 
 
38
        public JniEvent_v2_6(JniEvent_v2_6 oldEvent) {
 
39
                super(oldEvent);
 
40
        }
 
41
    
 
42
    public JniEvent_v2_6(Jni_C_Pointer_And_Library_Id newEventPtr, HashMap<Integer, JniMarker> newMarkersMap, JniTracefile newParentTracefile) throws JniException {
 
43
        super(newEventPtr, newMarkersMap, newParentTracefile);
 
44
    }
 
45
 
 
46
}