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_5 / JniMarkerField_v2_5.java
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 org.eclipse.linuxtools.internal.lttng.jni.common.Jni_C_Pointer_And_Library_Id;
15 import org.eclipse.linuxtools.internal.lttng.jni.exception.JniException;
16 import org.eclipse.linuxtools.lttng.jni.JniMarkerField;
17
18 /**
19 * <b><u>JniMarkerField_v2_5</u></b>
20 * <p>
21 * JniMarkerField version to support Lttng traceformat of version 2.5<br>
22 * This class extend abstract class JniMarkerField with (possibly) version specific implementation.<br>
23 * <p>
24 */
25 public class JniMarkerField_v2_5 extends JniMarkerField {
26
27 /*
28 * Forbid access to the default constructor
29 */
30 protected JniMarkerField_v2_5() {
31 super();
32 }
33
34
35 public JniMarkerField_v2_5(JniMarkerField_v2_5 oldMarkerField) {
36 super(oldMarkerField);
37 }
38
39 public JniMarkerField_v2_5(Jni_C_Pointer_And_Library_Id newMarkerFieldPtr) throws JniException {
40 super(newMarkerFieldPtr);
41 }
42 }
This page took 0.044795 seconds and 5 git commands to generate.