String s = null;
for (Iterator iter = timeSlots.iterator(); iter.hasNext();) {
TimeSlot timeSlot = (TimeSlot) iter.next();
if (daysFilter[timeSlot.getDayOfWeek()]) {
if (s == null) {
s = timeSlot.getDescription();
} else {
s += ", " + timeSlot.getDescription();
}
}
}
if (s != null) {
return s;
} else {
return "";
}