public void display(Date date) {
for (int i = 0; i < this.position; i++) {
schedule[i].init();
while (schedule[i].hasMoreOccurrences()) {
Date tmp = schedule[i].nextOccurrence();
if (tmp.compareTo(date) == 0) {
System.out.println(schedule[i].toString());
schedule[i].init();
break;
}
}
}
}
Basically put, the above goes through an array of "events". Each event has a method to check is it has more occurrences and a method to get the next occurrence (which is of type date).
The method accepts a date and goes through the array and checks every event. For each event it checks if it has more occurrences. If it does, it checks if this occurrence is "equal" to the date specified. If it is, it prints the event and breaks out of the loop and moves to the next event in the array. If the next occurrence is not equal to the date given, it keeps checking as long as the event has more occurrences to check.
I know this method is SUPPOSED to print out events, however I'm getting no errors and no output. I've been playing around with it for a while to no avail.
I'm 100% sure my hasMoreOccurrences() and nextOccurrence() methods are working correctly because other parts of the code which relies on them heavily works.
I'm stumped :/ Thanks for the help :)
EDIT I've printed both tmp and date and I see that they both occur on the same DATE but not the same TIME. I don't care about the time, only about the date. Any ideas?
Dateobject containing unwanted "time" information. That is, if 01/01/2010 == 01/01/2010 regardless of the time component, you'll need to handle this in code. – Stefan Kendall Feb 28 '11 at 2:35tmpanddatebefore doing comparison. If they are never equal up to with the millisecond, you've your answer. – BalusC Feb 28 '11 at 2:35