Skip to content
Snippets Groups Projects
Commit 730bf035 authored by Christian Wulf's avatar Christian Wulf
Browse files

fixed javadoc issues

parent 1f70cc6c
No related branches found
No related tags found
No related merge requests found
...@@ -168,7 +168,7 @@ public final class Analysis implements UncaughtExceptionHandler { ...@@ -168,7 +168,7 @@ public final class Analysis implements UncaughtExceptionHandler {
* *
* @return a collection of thread/throwable pairs * @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 @Deprecated
public Collection<Pair<Thread, Throwable>> start() { public Collection<Pair<Thread, Throwable>> start() {
...@@ -207,6 +207,9 @@ public final class Analysis implements UncaughtExceptionHandler { ...@@ -207,6 +207,9 @@ public final class Analysis implements UncaughtExceptionHandler {
/** /**
* This method will start the Analysis and all containing stages. * 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 * @since 1.1
*/ */
public void execute() { public void execute() {
...@@ -226,7 +229,7 @@ public final class Analysis implements UncaughtExceptionHandler { ...@@ -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 * 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() { public AnalysisConfiguration getConfiguration() {
return this.configuration; return this.configuration;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment