com.vadeen.neat.gui.charts.FloatDataset Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of neat-gui Show documentation
Show all versions of neat-gui Show documentation
GUI implemenation for com.vadeen.neat.
The newest version!
package com.vadeen.neat.gui.charts;
public class FloatDataset extends Dataset {
private float maxValue = 0;
@Override
public void add(Float value) {
if (value > maxValue)
maxValue = value;
super.add(value);
}
public float getMaxValue() {
return maxValue;
}
}