tmf/lttng: Remove unneeded (non-Javadoc) comments
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core.tests / stubs / org / eclipse / linuxtools / tmf / tests / stubs / event / TmfEventTypeStub.java
index 1e57a6642a687dfdf4c2d98226614bc868a746d8..2ad3868199ea4e2698d45bc0e6e209b5de07d43b 100644 (file)
@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2009, 2012 Ericsson
+ * Copyright (c) 2009, 2013 Ericsson
  *
  * All rights reserved. This program and the accompanying materials are made
  * available under the terms of the Eclipse Public License v1.0 which
@@ -21,16 +21,16 @@ import org.eclipse.linuxtools.tmf.core.event.TmfEventType;
 @SuppressWarnings("javadoc")
 public class TmfEventTypeStub extends TmfEventType {
 
-    private static final ITmfEventField FIELD_1 = new TmfEventField("Field1", null);
-    private static final ITmfEventField FIELD_2 = new TmfEventField("Field2", null);
-    private static final ITmfEventField FIELD_3 = new TmfEventField("Field3", null);
-    private static final ITmfEventField FIELD_4 = new TmfEventField("Field4", null);
-    private static final ITmfEventField FIELD_5 = new TmfEventField("Field5", null);
+    private static final ITmfEventField FIELD_1 = new TmfEventField("Field1", null, null);
+    private static final ITmfEventField FIELD_2 = new TmfEventField("Field2", null, null);
+    private static final ITmfEventField FIELD_3 = new TmfEventField("Field3", null, null);
+    private static final ITmfEventField FIELD_4 = new TmfEventField("Field4", null, null);
+    private static final ITmfEventField FIELD_5 = new TmfEventField("Field5", null, null);
 
     private static final ITmfEventField[] FIELDS = new ITmfEventField[] {
         FIELD_1, FIELD_2, FIELD_3, FIELD_4, FIELD_5 };
 
-    private static ITmfEventField ROOT = new TmfEventField(ITmfEventField.ROOT_FIELD_ID, FIELDS);
+    private static ITmfEventField ROOT = new TmfEventField(ITmfEventField.ROOT_FIELD_ID, null,  FIELDS);
 
     public TmfEventTypeStub() {
         super("UnitTest", "TmfEventTypeStub", ROOT);
This page took 0.024824 seconds and 5 git commands to generate.