Messy fix for OutOfBoundsException. Added Voorspellingen at the end of day. Improved code layout
20 lines
474 B
Java
20 lines
474 B
Java
import java.util.ArrayList;
|
|
|
|
public class LangsteHittegolfPeriode extends Grootheid{
|
|
|
|
//constructor
|
|
public LangsteHittegolfPeriode(Measurement measurement1, ArrayList<Measurement> measurement2){
|
|
setName("Langste Hittegolf ");
|
|
updatePeriod(measurement2);
|
|
}
|
|
|
|
public void updatePeriod(ArrayList<Measurement> list){
|
|
setPeriod(StatisticsCalculator.langsteHittegolfPeriode(list));
|
|
}
|
|
|
|
public void displayGraph()
|
|
{
|
|
}
|
|
|
|
}
|