Skip to content
Snippets Groups Projects
Commit 1f7d87d5 authored by as's avatar as
Browse files

fix jdoc

parent ad107ca0
Branches
Tags
No related merge requests found
...@@ -23,7 +23,7 @@ import kieker.tools.opad.record.StorableDetectionResult; ...@@ -23,7 +23,7 @@ import kieker.tools.opad.record.StorableDetectionResult;
/** /**
* *
* This filter separates input values by their reach of a certain threshold (parameter). It takes events of type {@link StorableDetectionResult} and channels them * This filter separates input values by their reach of a certain threshold (parameter). It takes events of type StorableDetectionResult and channels them
* into two output ports, depending on whether the threshold was reached or not. This filter has configuration properties for the (critical) threshold. Although the * into two output ports, depending on whether the threshold was reached or not. This filter has configuration properties for the (critical) threshold. Although the
* configuration of the critical threshold is possible, the value is currently not used by the filter. * configuration of the critical threshold is possible, the value is currently not used by the filter.
* *
...@@ -33,16 +33,10 @@ import kieker.tools.opad.record.StorableDetectionResult; ...@@ -33,16 +33,10 @@ import kieker.tools.opad.record.StorableDetectionResult;
*/ */
public class AnomalyDetectionFilter extends AbstractConsumerStage<StorableDetectionResult> { public class AnomalyDetectionFilter extends AbstractConsumerStage<StorableDetectionResult> {
/** /** The output port delivering the normal score if it remains below the threshold. */
* The output port delivering the normalyscore if it remains below
* the threshhold.
*/
private final OutputPort<StorableDetectionResult> outputPortNormal = this.createOutputPort(); private final OutputPort<StorableDetectionResult> outputPortNormal = this.createOutputPort();
/** /** The output port delivering the abnormal score if it exceeds the threshold. */
* The output port delivering the annromalyscore if it exceeds the
* threshhold.
*/
private final OutputPort<StorableDetectionResult> outputPortAnnormal = this.createOutputPort(); private final OutputPort<StorableDetectionResult> outputPortAnnormal = this.createOutputPort();
private final double threshold; private final double threshold;
...@@ -59,10 +53,7 @@ public class AnomalyDetectionFilter extends AbstractConsumerStage<StorableDetect ...@@ -59,10 +53,7 @@ public class AnomalyDetectionFilter extends AbstractConsumerStage<StorableDetect
return threshold; return threshold;
} }
/** /** @param threshold */
*
* @param threshold
*/
public AnomalyDetectionFilter(final double threshold) { public AnomalyDetectionFilter(final double threshold) {
super(); super();
this.threshold = threshold; this.threshold = threshold;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment