Interface ScheduleFromRecordSettings
public interface ScheduleFromRecordSettings
Interface for specifying the schedule creator class
If this interface is implemented, then a custom schedule builder class can be created. This interface's method must be implemented, which receives two parameters. The first parameter is the schedule instance, the second parameter is the record, which is used as a basis when setting the schedule. The created schedule will be set in the calendar component.
- Since:
- 4.0
- Author:
- JBStrap
-
Method Summary
Modifier and TypeMethodDescriptionvoid
setScheduleFromRecord
(Schedule schedule, Record record) The schedule creator method.
-
Method Details
-
setScheduleFromRecord
The schedule creator method. The setting of the schedule must be implemented here, according to the specified database record.- Parameters:
schedule
- The schedule object, which will be placed in the calendar componentrecord
- The database record, which will be used as a basis, when setting the schedule
-