tmf: Update copyright headers in tmf.core
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core / src / org / eclipse / linuxtools / tmf / core / uml2sd / ITmfSyncSequenceDiagramEvent.java
index e655888cdaee1b5c6861a0e36ee8e7e97fe1e6b5..ff7704b98be70f02251100183a24fc732e81592d 100644 (file)
@@ -1,37 +1,54 @@
 /**********************************************************************
- * Copyright (c) 2011 Ericsson
- * 
+ * Copyright (c) 2011, 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
  * accompanies this distribution, and is available at
  * http://www.eclipse.org/legal/epl-v10.html
- * 
- * Contributors: 
+ *
+ * Contributors:
  *   Bernd Hufmann - Initial API and implementation
  **********************************************************************/
 package org.eclipse.linuxtools.tmf.core.uml2sd;
 
-import org.eclipse.linuxtools.tmf.core.event.ITmfTimestamp;
+import org.eclipse.linuxtools.tmf.core.timestamp.ITmfTimestamp;
 
+/**
+ * <p>
+ * Interface for synchronous sequence diagram events.
+ * </p>
+ *
+ * @version 1.0
+ * @author Bernd Hufmann
+ */
 public interface ITmfSyncSequenceDiagramEvent {
-    
+
     /**
+     * Returns Name of message.
+     *
      * @return Name of message
      */
     public String getName();
-    
+
     /**
+     * Returns name of sender of message.
+     *
      * @return name of sender of message
      */
     public String getSender();
-    
+
     /**
+     * Returns Name of receiver of message.
+     *
      * @return Name of receiver of message
      */
     public String getReceiver();
 
     /**
+     * Returns Start time of message (i.e. send time).
+     *
      * @return Start timestamp of message (i.e. send time)
+     * @since 2.0
      */
     public ITmfTimestamp getStartTime();
 }
This page took 0.030559 seconds and 5 git commands to generate.