From 7dfb7dd1974829e381d566702ab239f67e776da1 Mon Sep 17 00:00:00 2001 From: Nelson Tavares de Sousa <stu103017@mail.uni-kiel.de> Date: Thu, 17 Sep 2015 13:17:36 +0200 Subject: [PATCH] javadoc fixes --- src/main/java/teetime/stage/Clock.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/teetime/stage/Clock.java b/src/main/java/teetime/stage/Clock.java index b263bf02..fd571334 100644 --- a/src/main/java/teetime/stage/Clock.java +++ b/src/main/java/teetime/stage/Clock.java @@ -19,10 +19,10 @@ import teetime.framework.AbstractProducerStage; import teetime.framework.TerminationStrategy; /** - * This stage sends an element repeatedly with a given interval {@link #intervalDelayInMs}. + * This stage sends the current timestamp repeatedly with a given interval delay of {@link #intervalDelayInMs}. * * @stage.sketch - * + * * <pre> * +------------------------+ * | | @@ -35,7 +35,7 @@ import teetime.framework.TerminationStrategy; * * @author Nelson Tavares de Sousa * - * @stage.output A long with the current system time in ms. + * @stage.output Current timestamp as long. * */ public final class Clock extends AbstractProducerStage<Long> { @@ -47,7 +47,7 @@ public final class Clock extends AbstractProducerStage<Long> { */ private long initialDelayInMs; /** - * Interval between two sent elements. + * Interval between two sent elements in ms. */ private long intervalDelayInMs; -- GitLab