tmf: Add missing Javadoc to tmf.ui
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / internal / tmf / ui / parsers / custom / CustomEventType.java
index 326a76d56802a8eb54c6965cfe23ca7a8576e98b..5ed13144d753ffe21e0cc37765ed546b505faa13 100644 (file)
@@ -1,13 +1,36 @@
+/*******************************************************************************
+ * Copyright (c) 2010 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:
+ *   Patrick Tassé - Initial API and implementation
+ *******************************************************************************/
+
 package org.eclipse.linuxtools.internal.tmf.ui.parsers.custom;
 
 import org.eclipse.linuxtools.tmf.core.event.ITmfEventField;
 import org.eclipse.linuxtools.tmf.core.event.TmfEventField;
 import org.eclipse.linuxtools.tmf.core.event.TmfEventType;
 
+/**
+ * Event type for custom text parsers.
+ *
+ * @author Patrick Tassé
+ */
 public abstract class CustomEventType extends TmfEventType {
-    
+
     private static String CONTEXT_ID = "CustomEventType"; //$NON-NLS-1$
-    
+
+    /**
+     * Constructor
+     *
+     * @param definition
+     *            Trace definition
+     */
     public CustomEventType(CustomTraceDefinition definition) {
         super(CONTEXT_ID, definition.definitionName, getRootField(definition));
     }
This page took 0.026494 seconds and 5 git commands to generate.