tmf: Update copyright headers in tmf.ui
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui.tests / src / org / eclipse / linuxtools / tmf / ui / tests / views / uml2sd / loader / Uml2SDSignalValidator.java
index c35e6f28e2e364771f5121ed5c09f753a69dad5f..85c591f08fa1148d66736bb446d7cdfbeff577a3 100644 (file)
@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2011, 2012 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
 package org.eclipse.linuxtools.tmf.ui.tests.views.uml2sd.loader;
 
 import org.eclipse.linuxtools.tmf.core.component.TmfComponent;
-import org.eclipse.linuxtools.tmf.core.event.TmfTimeRange;
-import org.eclipse.linuxtools.tmf.core.event.TmfTimestamp;
 import org.eclipse.linuxtools.tmf.core.signal.TmfEndSynchSignal;
 import org.eclipse.linuxtools.tmf.core.signal.TmfRangeSynchSignal;
 import org.eclipse.linuxtools.tmf.core.signal.TmfSignalHandler;
 import org.eclipse.linuxtools.tmf.core.signal.TmfStartSynchSignal;
 import org.eclipse.linuxtools.tmf.core.signal.TmfTimeSynchSignal;
+import org.eclipse.linuxtools.tmf.core.timestamp.TmfTimeRange;
+import org.eclipse.linuxtools.tmf.core.timestamp.TmfTimestamp;
 
 /**
  *  Class to implement that certain signals are sent as well as are sent with correct content.
+ *
+ *  @author Bernd Hufmann
  */
 public class Uml2SDSignalValidator extends TmfComponent implements IUml2SdSignalValidator {
 
@@ -42,12 +44,19 @@ public class Uml2SDSignalValidator extends TmfComponent implements IUml2SdSignal
     // ------------------------------------------------------------------------
     // Constructor
     // ------------------------------------------------------------------------
+    /**
+     * Constructor
+     */
     public Uml2SDSignalValidator() {
     }
 
     // ------------------------------------------------------------------------
     // Operations
     // ------------------------------------------------------------------------
+    /**
+     * Signal handler for time synch signal.
+     * @param signal the signal to handle.
+     */
     @TmfSignalHandler
     public void synchToTime(TmfTimeSynchSignal signal) {
         // Set results so that it can be validated in the test case
@@ -56,6 +65,10 @@ public class Uml2SDSignalValidator extends TmfComponent implements IUml2SdSignal
         setCurrentTimeError(!getCurrentTime().equals(signal.getCurrentTime()));
     }
 
+    /**
+     * Signal handler for time range synch signal.
+     * @param signal the signal to handle.
+     */
     @TmfSignalHandler
     public void synchToTimeRange(TmfRangeSynchSignal signal) {
         // Set results so that it can be validated in the test case
@@ -65,6 +78,10 @@ public class Uml2SDSignalValidator extends TmfComponent implements IUml2SdSignal
         setRangeError(!getCurrentRange().equals(signal.getCurrentRange()));
     }
 
+    /**
+     * Signal handler for handling start synch signal.
+     * @param signal the signal to handle.
+     */
     @TmfSignalHandler
     public void startSynch(TmfStartSynchSignal signal) {
         fSignalDepth++;
@@ -75,6 +92,10 @@ public class Uml2SDSignalValidator extends TmfComponent implements IUml2SdSignal
         setSignalError(fSignalDepth > 1);
     }
 
+    /**
+     * Signal handler for handling end synch signal.
+     * @param signal the signal to handle.
+     */
     @TmfSignalHandler
     public void endSynch(TmfEndSynchSignal signal) {
         fSignalDepth = fSignalDepth > 0 ? fSignalDepth - 1 : 0;
This page took 0.026941 seconds and 5 git commands to generate.