"Some" improvements

This commit is contained in:
jancoow
2014-10-22 21:40:15 +02:00
parent 1a167b8f35
commit b4258909e3
31 changed files with 374 additions and 444 deletions
+3 -2
View File
@@ -1,3 +1,4 @@
package weerstation1;
import java.util.GregorianCalendar;
import java.util.Calendar;
@@ -19,8 +20,8 @@ public class Periode
{
beginPeriode = new GregorianCalendar();
eindePeriode = new GregorianCalendar();
setBeginPeriode(jaar, maand, dag);
setEindePeriode(eindjaar, eindmaand, einddag);
setBeginPeriode(jaar, maand-1, dag);
setEindePeriode(eindjaar, eindmaand-1, einddag);
this.name = name;
}