BrightSide Workbench Full Report + Source Code
org.turro.calendar.event.CalendarEventSet Class Reference
Inheritance diagram for org.turro.calendar.event.CalendarEventSet:
Collaboration diagram for org.turro.calendar.event.CalendarEventSet:

Public Member Functions

 CalendarEventSet ()
 
 CalendarEventSet (Collection<? extends ICalendarEvent > c, boolean onlyPending)
 

Detailed Description

Author
Lluis TurrĂ³ Cutiller lluis.nosp@m.@tur.nosp@m.ro.or.nosp@m.g

Definition at line 29 of file CalendarEventSet.java.

Constructor & Destructor Documentation

◆ CalendarEventSet() [1/2]

org.turro.calendar.event.CalendarEventSet.CalendarEventSet ( )

Definition at line 31 of file CalendarEventSet.java.

31  {
32  super(new CalendarEventComparator());
33  }

◆ CalendarEventSet() [2/2]

org.turro.calendar.event.CalendarEventSet.CalendarEventSet ( Collection<? extends ICalendarEvent c,
boolean  onlyPending 
)

Definition at line 35 of file CalendarEventSet.java.

35  {
36  super(new CalendarEventComparator());
37  if(onlyPending) {
38  for(ICalendarEvent ce : c) {
39  if(!ce.isDone()) {
40  add(ce);
41  }
42  }
43  } else {
44  addAll(c);
45  }
46  }

The documentation for this class was generated from the following file: