From 899636f6c146958b5b5ec660006953192933f60f Mon Sep 17 00:00:00 2001 From: Nelson Tavares de Sousa <stu103017@mail.uni-kiel.de> Date: Tue, 23 Jun 2015 11:05:46 +0200 Subject: [PATCH] edited since-javadoc-tag --- .../java/teetime/framework/AbstractCompositeStage.java | 2 +- src/main/java/teetime/framework/Configuration.java | 8 ++++++++ src/main/java/teetime/framework/ConfigurationContext.java | 2 ++ src/main/java/teetime/framework/Execution.java | 2 ++ 4 files changed, 13 insertions(+), 1 deletion(-) diff --git a/src/main/java/teetime/framework/AbstractCompositeStage.java b/src/main/java/teetime/framework/AbstractCompositeStage.java index 984ca181..d09ed0bb 100644 --- a/src/main/java/teetime/framework/AbstractCompositeStage.java +++ b/src/main/java/teetime/framework/AbstractCompositeStage.java @@ -18,7 +18,7 @@ package teetime.framework; /** * Represents a minimal stage that composes several other stages. * - * @since 1.2 + * @since 2.0 * * @author Christian Wulf, Nelson Tavares de Sousa * diff --git a/src/main/java/teetime/framework/Configuration.java b/src/main/java/teetime/framework/Configuration.java index 35f225ea..e01908f7 100644 --- a/src/main/java/teetime/framework/Configuration.java +++ b/src/main/java/teetime/framework/Configuration.java @@ -1,5 +1,13 @@ package teetime.framework; +/** + * + * + * @author Christian Wulf, Nelson Tavares de Sousa + * + * @since 2.0 + * + */ public abstract class Configuration extends AbstractCompositeStage { public Configuration() { diff --git a/src/main/java/teetime/framework/ConfigurationContext.java b/src/main/java/teetime/framework/ConfigurationContext.java index a89df567..48122ca3 100644 --- a/src/main/java/teetime/framework/ConfigurationContext.java +++ b/src/main/java/teetime/framework/ConfigurationContext.java @@ -31,6 +31,8 @@ import teetime.framework.pipe.PipeFactoryRegistry.ThreadCommunication; /** * Represents a context that is used by a configuration and composite stages to connect ports, for example. * Stages can be added by executing {@link #addThreadableStage(Stage)}. + * + * @since 2.0 */ public final class ConfigurationContext { diff --git a/src/main/java/teetime/framework/Execution.java b/src/main/java/teetime/framework/Execution.java index 7c14597c..69148a4f 100644 --- a/src/main/java/teetime/framework/Execution.java +++ b/src/main/java/teetime/framework/Execution.java @@ -44,6 +44,8 @@ import teetime.util.Pair; * * @param <T> * the type of the {@link Configuration} + * + * @since 2.0 */ public final class Execution<T extends Configuration> implements UncaughtExceptionHandler { -- GitLab