Procházet zdrojové kódy

Update naming scheme

Updated naming scheme to make it compatible with all the other code.
Kenneth van Ewijk před 11 roky
rodič
revize
8c1e68cbcb
1 změnil soubory, kde provedl 3 přidání a 3 odebrání
  1. 3 3
      BuitenLuchtVochtigheid.java

+ 3 - 3
buitenluchtvochtigheid.java → BuitenLuchtVochtigheid.java

@@ -7,19 +7,19 @@ import java.util.ArrayList;
  * @author (your name) 
  * @version (a version number or a date)
  */
-public class OpdrachtBuitenLuchtvochtigheid
+public class BuitenLuchtvochtigheid
 {
     Weerstation weerstation;
     Measurement meting;
     ArrayList<Measurement> laatste24uur; //ArrayList om de luchtvochtigheid op te slaan
     
-    public OpdrachtBuitenLuchtvochtigheid()
+    public BuitenLuchtvochtigheid()
     {
             weerstation = new Weerstation();  //maakt een nieuw weerstation aan
             meting = weerstation.getMostRecentMeasurement(); //pakken recenste gegevens MOET VERWIJDERD WORDEN
     }
     
-    public double buitenLuchtvochtigheid()
+    public double getBuitenLuchtvochtigheid()
     {
         IO.init();
         meting.getOutsideHum();