Improved Security
This commit is contained in:
+1
-1
@@ -21,7 +21,7 @@ public class DewPoint extends Grootheid
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void display(){
|
public void display(){
|
||||||
GUIboard.writeUpperDigits(current);
|
GUIboard.writeUpperDigits(getCurrent());
|
||||||
GUIboard.writePageToMatrix("Dauwpunt", "Gemiddelde: " + getAvg(), "");
|
GUIboard.writePageToMatrix("Dauwpunt", "Gemiddelde: " + getAvg(), "");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
+4
-4
@@ -3,10 +3,10 @@ import java.util.ArrayList;
|
|||||||
public class Grootheid
|
public class Grootheid
|
||||||
{
|
{
|
||||||
// instance variables - replace the example below with your own
|
// instance variables - replace the example below with your own
|
||||||
public double avg;
|
private double avg;
|
||||||
public double max;
|
private double max;
|
||||||
public double min;
|
private double min;
|
||||||
public double current;
|
private double current;
|
||||||
|
|
||||||
//constructor
|
//constructor
|
||||||
public Grootheid(){
|
public Grootheid(){
|
||||||
|
|||||||
Reference in New Issue
Block a user