cleanup comments

This commit is contained in:
2013-10-14 12:57:21 +02:00
parent c1c8170f36
commit 716eeba98b
8 changed files with 1 additions and 21 deletions
@@ -19,10 +19,6 @@
package ch.psi.fda.core;
/**
* @author ebner
*
*/
public interface Action {
/**
@@ -26,9 +26,6 @@ import ch.psi.fda.core.messages.DataQueue;
/**
* Loop of actions to accomplish a task. Depending on the loop
* actions may be executed in a different way.
*
* @author ebner
*
*/
public interface ActionLoop extends Action {
@@ -19,11 +19,6 @@
package ch.psi.fda.core;
/**
*
* @author ebner
*
*/
public interface Actor {
/**
* Set actor value
@@ -37,5 +37,4 @@ public class ActorSetCallable implements Callable<Object> {
actor.set();
return null;
}
}
@@ -21,8 +21,6 @@ package ch.psi.fda.core;
/**
* Singleton object for holing the core engine configuration
*
* @author ebner
*/
public class EngineConfiguration {
@@ -25,9 +25,6 @@ package ch.psi.fda.core;
*
* Example:
* An Guard can be used to check whether an injection happened while the the detector were read.
*
* @author ebner
*
*/
public interface Guard {
@@ -23,8 +23,6 @@ package ch.psi.fda.core;
* The sensor interface describes an entity that can be read out like a
* simple channel or (image) detector. Depending on the sensor type the
* returned data is of a certain type.
* @author ebner
*
*/
public interface Sensor {
/**
@@ -17,7 +17,7 @@
*
*/
package ch.psi.fda.core.manipulator;
package ch.psi.fda.aq;
import static org.junit.Assert.*;
import gov.aps.jca.CAException;