From 716eeba98be8c0d56a1f81a6bf79a9e9c4ceada0 Mon Sep 17 00:00:00 2001 From: Simon Ebner Date: Mon, 14 Oct 2013 12:57:21 +0200 Subject: [PATCH] cleanup comments --- ch.psi.fda/src/main/java/ch/psi/fda/core/Action.java | 4 ---- ch.psi.fda/src/main/java/ch/psi/fda/core/ActionLoop.java | 3 --- ch.psi.fda/src/main/java/ch/psi/fda/core/Actor.java | 5 ----- .../src/main/java/ch/psi/fda/core/ActorSetCallable.java | 1 - .../src/main/java/ch/psi/fda/core/EngineConfiguration.java | 2 -- ch.psi.fda/src/main/java/ch/psi/fda/core/Guard.java | 3 --- ch.psi.fda/src/main/java/ch/psi/fda/core/Sensor.java | 2 -- .../ch/psi/fda/{core/manipulator => aq}/ManipulatorTest.java | 2 +- 8 files changed, 1 insertion(+), 21 deletions(-) rename ch.psi.fda/src/test/java/ch/psi/fda/{core/manipulator => aq}/ManipulatorTest.java (99%) diff --git a/ch.psi.fda/src/main/java/ch/psi/fda/core/Action.java b/ch.psi.fda/src/main/java/ch/psi/fda/core/Action.java index 78c29f9..a0c0fdf 100644 --- a/ch.psi.fda/src/main/java/ch/psi/fda/core/Action.java +++ b/ch.psi.fda/src/main/java/ch/psi/fda/core/Action.java @@ -19,10 +19,6 @@ package ch.psi.fda.core; -/** - * @author ebner - * - */ public interface Action { /** diff --git a/ch.psi.fda/src/main/java/ch/psi/fda/core/ActionLoop.java b/ch.psi.fda/src/main/java/ch/psi/fda/core/ActionLoop.java index 0e50c67..b497556 100644 --- a/ch.psi.fda/src/main/java/ch/psi/fda/core/ActionLoop.java +++ b/ch.psi.fda/src/main/java/ch/psi/fda/core/ActionLoop.java @@ -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 { diff --git a/ch.psi.fda/src/main/java/ch/psi/fda/core/Actor.java b/ch.psi.fda/src/main/java/ch/psi/fda/core/Actor.java index bdbfb82..fc7c045 100644 --- a/ch.psi.fda/src/main/java/ch/psi/fda/core/Actor.java +++ b/ch.psi.fda/src/main/java/ch/psi/fda/core/Actor.java @@ -19,11 +19,6 @@ package ch.psi.fda.core; -/** - * - * @author ebner - * - */ public interface Actor { /** * Set actor value diff --git a/ch.psi.fda/src/main/java/ch/psi/fda/core/ActorSetCallable.java b/ch.psi.fda/src/main/java/ch/psi/fda/core/ActorSetCallable.java index 7c68591..3446875 100644 --- a/ch.psi.fda/src/main/java/ch/psi/fda/core/ActorSetCallable.java +++ b/ch.psi.fda/src/main/java/ch/psi/fda/core/ActorSetCallable.java @@ -37,5 +37,4 @@ public class ActorSetCallable implements Callable { actor.set(); return null; } - } diff --git a/ch.psi.fda/src/main/java/ch/psi/fda/core/EngineConfiguration.java b/ch.psi.fda/src/main/java/ch/psi/fda/core/EngineConfiguration.java index f55de04..61391ad 100644 --- a/ch.psi.fda/src/main/java/ch/psi/fda/core/EngineConfiguration.java +++ b/ch.psi.fda/src/main/java/ch/psi/fda/core/EngineConfiguration.java @@ -21,8 +21,6 @@ package ch.psi.fda.core; /** * Singleton object for holing the core engine configuration - * - * @author ebner */ public class EngineConfiguration { diff --git a/ch.psi.fda/src/main/java/ch/psi/fda/core/Guard.java b/ch.psi.fda/src/main/java/ch/psi/fda/core/Guard.java index 1a5bdf4..16915e3 100644 --- a/ch.psi.fda/src/main/java/ch/psi/fda/core/Guard.java +++ b/ch.psi.fda/src/main/java/ch/psi/fda/core/Guard.java @@ -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 { diff --git a/ch.psi.fda/src/main/java/ch/psi/fda/core/Sensor.java b/ch.psi.fda/src/main/java/ch/psi/fda/core/Sensor.java index 62f41a1..fbace06 100644 --- a/ch.psi.fda/src/main/java/ch/psi/fda/core/Sensor.java +++ b/ch.psi.fda/src/main/java/ch/psi/fda/core/Sensor.java @@ -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 { /** diff --git a/ch.psi.fda/src/test/java/ch/psi/fda/core/manipulator/ManipulatorTest.java b/ch.psi.fda/src/test/java/ch/psi/fda/aq/ManipulatorTest.java similarity index 99% rename from ch.psi.fda/src/test/java/ch/psi/fda/core/manipulator/ManipulatorTest.java rename to ch.psi.fda/src/test/java/ch/psi/fda/aq/ManipulatorTest.java index bebfeb8..49b9054 100644 --- a/ch.psi.fda/src/test/java/ch/psi/fda/core/manipulator/ManipulatorTest.java +++ b/ch.psi.fda/src/test/java/ch/psi/fda/aq/ManipulatorTest.java @@ -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;