~ubuntu-branches/ubuntu/utopic/eclipse-linuxtools/utopic

« back to all changes in this revision

Viewing changes to lttng/org.eclipse.linuxtools.lttng.jni/src/org/eclipse/linuxtools/internal/lttng/jni_v2_5/JniEvent_v2_5.java

  • Committer: Package Import Robot
  • Author(s): Jakub Adam
  • Date: 2014-05-12 18:11:40 UTC
  • mfrom: (3.1.2 sid)
  • Revision ID: package-import@ubuntu.com-20140512181140-w237r3vsah1tmybz
Tags: 2.2.1-1
* New upstream release.
* Refreshed d/patches.
* Removed eclipse-cdt-valgrind-remote package, all its functionality
  is now provided by eclipse-cdt-profiling-framework-remote.
* Added remove-license-feature.patch.
* Bump Standards-Version to 3.9.5.
* Enable eclipse-changelog package.
* Enable eclipse-rpm-editor package.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
package org.eclipse.linuxtools.internal.lttng.jni_v2_5;
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_5</u></b>
24
 
 * <p>
25
 
 * JniEvent version to support Lttng traceformat of version 2.5<br>
26
 
 * This class extend abstract class JniEvent with (possibly) version specific implementation.<br>
27
 
 * <p>
28
 
 */
29
 
public class JniEvent_v2_5 extends JniEvent {
30
 
        
31
 
        /*
32
 
         * Forbid access to the default constructor
33
 
         */
34
 
        protected JniEvent_v2_5() {
35
 
                super();
36
 
    }
37
 
 
38
 
        public JniEvent_v2_5(JniEvent_v2_5 oldEvent) {
39
 
                super(oldEvent);
40
 
        }
41
 
    
42
 
    public JniEvent_v2_5(Jni_C_Pointer_And_Library_Id newEventPtr, HashMap<Integer, JniMarker> newMarkersMap, JniTracefile newParentTracefile) throws JniException {
43
 
        super(newEventPtr, newMarkersMap, newParentTracefile);
44
 
    }
45
 
 
46
 
}