Skip to content
Snippets Groups Projects
Commit 66b69838 authored by Lars Erik Blümke's avatar Lars Erik Blümke
Browse files

Updated javadoc comments

parent 3c350c26
No related branches found
No related tags found
No related merge requests found
Pipeline #
......@@ -28,7 +28,7 @@ import kieker.common.record.system.CPUUtilizationRecord;
import teetime.stage.basic.AbstractFilter;
/**
* This is a filter which accepts {@link CPUUtilizationRecord} instances and provides different views to visualize them.
* This is a filter which accepts {@link CPUUtilizationRecord} instances and provides different views (XYPlot or MeterGauge) to visualize them.
*
* @author Bjoern Weissenfels, Nils Christian Ehmke, Lars Erik Bluemke
*
......@@ -51,7 +51,19 @@ public class CPUUtilizationDisplayFilter extends AbstractFilter<CPUUtilizationRe
private final TimeUnit recordsTimeUnit;
public CPUUtilizationDisplayFilter(final int numberOfEntries, final Long[] warningIntervals, final TimeUnit recordsTimeUnit) {
/**
* Creates a new instance of this filter.
*
* @param numberOfEntries
* Maximal number of entries in a XYPlot
* @param warningIntervals
* The intervals for the colors displayed in a XYPlot
* @param recordsTimeUnit
* Time unit to interpret the timestamp of a record passed to the input port
* @see kieker.analysis.display.MeterGauge
* @see kieker.analysis.display.XYPlot
*/
public CPUUtilizationDisplayFilter(final int numberOfEntries, final Number[] warningIntervals, final TimeUnit recordsTimeUnit) {
this.numberOfEntries = numberOfEntries;
this.warningIntervals = warningIntervals;
this.recordsTimeUnit = recordsTimeUnit;
......
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