From 730bf035dedfb9a6515eedd42cecc9fa466632e4 Mon Sep 17 00:00:00 2001
From: Christian Wulf <chw@informatik.uni-kiel.de>
Date: Fri, 27 Mar 2015 13:44:13 +0100
Subject: [PATCH] fixed javadoc issues

---
 src/main/java/teetime/framework/Analysis.java | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/src/main/java/teetime/framework/Analysis.java b/src/main/java/teetime/framework/Analysis.java
index ffb48663..42484554 100644
--- a/src/main/java/teetime/framework/Analysis.java
+++ b/src/main/java/teetime/framework/Analysis.java
@@ -168,7 +168,7 @@ public final class Analysis implements UncaughtExceptionHandler {
 	 *
 	 * @return a collection of thread/throwable pairs
 	 *
-	 * @deprecated As of release 1.1, replaced by {@link #execute()}
+	 * @deprecated since 1.1, replaced by {@link #execute()}
 	 */
 	@Deprecated
 	public Collection<Pair<Thread, Throwable>> start() {
@@ -207,6 +207,9 @@ public final class Analysis implements UncaughtExceptionHandler {
 	/**
 	 * This method will start the Analysis and all containing stages.
 	 *
+	 * @throws AnalysisException
+	 *             if at least one exception in one thread has occurred within the analysis. The exception contains the pairs of thread and throwable
+	 *
 	 * @since 1.1
 	 */
 	public void execute() {
@@ -226,7 +229,7 @@ public final class Analysis implements UncaughtExceptionHandler {
 	/**
 	 * Retrieves the Configuration which was used to add and arrange all stages needed for the Analysis
 	 *
-	 * @return Configuration used for the Analysis
+	 * @return the configuration used for the Analysis
 	 */
 	public AnalysisConfiguration getConfiguration() {
 		return this.configuration;
-- 
GitLab