Update contrib.
5 (object Design "Logical View"
8 file_name "D:\\schsvr\\DESIGN\\Model.mdl"
10 defaults (object defaults
21 defaultFont (object Font
31 showClassOfObject TRUE
33 root_usecase_package (object Class_Category "Use Case View"
35 exportControl "Public"
37 logical_models (list unit_reference_list)
38 logical_presentations (list unit_reference_list
39 (object UseCaseDiagram "Main"
47 items (list diagram_item_list))))
48 root_category (object Class_Category "Logical View"
50 exportControl "Public"
52 subsystem "Component View"
54 logical_models (list unit_reference_list
55 (object Class "CServer"
58 operations (list Operations
59 (object Operation "RunL"
61 concurrency "Sequential"
62 opExportControl "Public"
64 (object Operation "Start"
66 concurrency "Sequential"
67 opExportControl "Public"
69 (object Class "CSession"
72 (object Class "CSchSession"
76 |The session class, server-side. Mostly just unpacks RMessages and forwards commands on to the Task Scheduler instance.
77 |Initialised on creation with the instance of CTaskScheduler.
78 |Its iClient member is initialised to NULL. Once the client using the session has registered, its iClient member is set to point to that client, and any tasks scheduled by that client during the session belong to that iClient.
80 superclasses (list inheritance_relationship_list
81 (object Inheritance_Relationship
84 quidu "34D1C70C0168"))
85 used_nodes (list uses_relationship_list
86 (object Uses_Relationship
91 supplier_cardinality (value cardinality "0..n")
92 client_cardinality (value cardinality "1..1")))
93 operations (list Operations
94 (object Operation "ServiceL"
96 concurrency "Sequential"
97 opExportControl "Public"
99 (object Class "CSchServer"
103 |The server class. Owns (directly) all session instances, and the one and only instance of CTaskScheduler.
104 |Owns (indirectly) everything else.
106 superclasses (list inheritance_relationship_list
107 (object Inheritance_Relationship
110 quidu "34D1C70C010E")))
111 (object Class "CTaskScheduler"
114 |- Owns all the other scheduler objects.
115 |- Provides an interface for creating, deleting, editing & naming schedules
116 |- Provides an interface for registering users by creating new client proxies
117 |- Provides an interface for scheduling tasks
118 |- Informs schedules when they are due, and updates them accordingly
119 |- Executes clients when appropriate
120 |- Ensures that any persistent schedules are added to the persistent backup store through its iBackup member; so all is not lost in case of server death
121 |- Maintains schedule instances in TWO lists:
122 | -the first, 'iSchedules' is a list of all the schedules defined and is an owning list.
123 | -the second, iPending, is a list of all schedules which are waiting to go off (i.e. those schedules which have tasks scheduled and are not disabled. This list is ordered by the due time for the schedules. The scheduler maintains this list and sets the timer's time to be the due time of the first schedule in the list.
125 |- Whenever the server starts, it asks its iBackup member to restore its schedules from backup.
126 |If the backup file is missing or corrupt it asks the iBackup to create a new, empty one.
127 |Subsequently, whenever schedules are added, deleted or edited the iBackup member is asked to back up the store to keep it in sync
129 |N.B. I would like to eliminate this class, as soon as I get the time. This won't affect clients at all but will improve the design.
131 fields (list has_relationship_list
132 (object Has_Relationship
135 supplier "CServiceTimer"
137 supplier_cardinality (value cardinality "1..1")
138 client_cardinality (value cardinality "1..1")))
139 operations (list Operations
140 (object Operation "ScheduleTaskL"
142 parameters (list Parameters
143 (object Parameter "aUser"
145 (object Parameter "aItem"
147 (object Parameter "aAction"
149 (object Parameter "aSchedule"
150 type "TScheduleInfo"))
152 concurrency "Sequential"
153 opExportControl "Public"
155 (object Operation "DeleteTaskL"
157 parameters (list Parameters
158 (object Parameter "aUser"
160 (object Parameter "aItem"
163 concurrency "Sequential"
164 opExportControl "Public"
166 (object Operation "NewScheduleL"
168 parameters (list Parameters
169 (object Parameter "aUser"
172 concurrency "Sequential"
173 opExportControl "Public"
175 (object Operation "DeleteScheduleL"
177 parameters (list Parameters
178 (object Parameter "aUser"
181 concurrency "Sequential"
182 opExportControl "Public"
184 (object Operation "RegisterClientL"
186 concurrency "Sequential"
187 opExportControl "Public"
189 (object Operation "EditScheduleL"
191 concurrency "Sequential"
192 opExportControl "Public"
194 (object Operation "DueTaskNotify"
196 concurrency "Sequential"
197 opExportControl "Public"
199 (object Operation "ExecuteClients"
201 concurrency "Sequential"
202 opExportControl "Public"
204 class_attributes (list class_attribute_list
205 (object ClassAttribute "iNotifier"
207 type "CEnvironmentChangeNotifier")
208 (object ClassAttribute "iBackup"
210 type "TScheduleBackup"))
211 statediagram (object State_Diagram ""
219 items (list diagram_item_list)))
220 (object Class "CClientProxy"
224 |This class encapsulates the information needed to execute a set of tasks, and owns the tasks associated with it.
226 |An instance of it gets created when a client registers, and is initialized with the name of the executing program, and its priority: if 2 clients have different priorities, the one with the higher priority gets to execute all its tasks before the low-priority one gets to execute any.
227 |When it's told to execute, it:
228 | - saves all its due tasks to a file
229 | - creates a task executor, initializing it with the name of the executing program and the name of the file in which it's saved the tasks
230 | - tells it to execute the tasks
231 | - deletes any of the tasks which don't repeat
233 |It is reference-counted: it is deleted when:
234 | - there are no open sessions which have a pointer to it
235 |AND - there are no pending tasks belonging to it
237 used_nodes (list uses_relationship_list
238 (object Uses_Relationship
241 supplier "TScheduleEntry"
243 supplier_cardinality (value cardinality "0..n")
244 client_cardinality (value cardinality "1..1"))
245 (object Uses_Relationship
247 supplier "CTaskExecutor"
248 quidu "3587DB8B0352"))
249 operations (list Operations
250 (object Operation "Execute()"
252 concurrency "Sequential"
253 opExportControl "Public"
255 class_attributes (list class_attribute_list
256 (object ClassAttribute "iTaskExecutor"
259 (object ClassAttribute "iClientPriority"
262 exportControl "Public")
263 (object ClassAttribute "iUsers"
266 (object Class "CTimer"
268 (object Class "CServiceTimer"
270 superclasses (list inheritance_relationship_list
271 (object Inheritance_Relationship
274 quidu "34D1CB1C0023"))
275 operations (list Operations
276 (object Operation "SetDueTime"
278 parameters (list Parameters
279 (object Parameter "aNewTime"
282 concurrency "Sequential"
283 opExportControl "Public"
285 (object Operation "DueTime"
288 concurrency "Sequential"
289 opExportControl "Public"
291 class_attributes (list class_attribute_list
292 (object ClassAttribute "iDueTime"
295 (object ClassAttribute "iCallback"
298 (object Class "CSchedule"
302 |This class is responsible for knowing what time it's due.
304 |It is defined essentially by an ordered list of one or more TScheduleEntry instances, each of which will return their own next due time when asked.
306 |It also has zero or more tasks (TScheduledTask). When it is due, all its tasks are due and it tells them this.
308 |It has 2 flags of type TBool:
309 | - iPersists: if a schedule persists, it hangs around whether it has got any tasks of not. If it doesn't, it gets deleted as soon as all its tasks are deleted.
310 | - iEnabled: if a schedule is disabled it just does nothing, whether it has tasks or not, until it is enabled again.
313 fields (list has_relationship_list
314 (object Has_Relationship
317 supplier "TScheduleEntry"
319 exportControl "Private"
320 supplier_cardinality (value cardinality "1..1")
321 client_cardinality (value cardinality "1..1"))
322 (object Has_Relationship
325 supplier "TScheduledTask"
327 supplier_cardinality (value cardinality "0..n")
328 client_cardinality (value cardinality "1..1")))
329 operations (list Operations
330 (object Operation "AddEntry"
332 concurrency "Sequential"
333 opExportControl "Public"
335 (object Operation "RemoveEntry"
337 concurrency "Sequential"
338 opExportControl "Public"
340 (object Operation "AddTask"
342 concurrency "Sequential"
343 opExportControl "Public"
345 (object Operation "DueTime"
348 concurrency "Sequential"
349 opExportControl "Public"
351 (object Operation "FirstScheduledTime"
353 concurrency "Sequential"
354 opExportControl "Public"
356 (object Operation "NextScheduledTime"
358 concurrency "Sequential"
359 opExportControl "Public"
361 (object Operation "NotifyClients"
363 concurrency "Sequential"
364 opExportControl "Public"
366 (object Operation "NewL"
368 parameters (list Parameters
369 (object Parameter "aStore"
371 (object Parameter "aId"
374 concurrency "Sequential"
375 opExportControl "Public"
377 (object Operation "StoreL"
379 parameters (list Parameters
380 (object Parameter "aStore"
383 concurrency "Sequential"
384 opExportControl "Public"
386 (object Operation "RestoreL"
388 parameters (list Parameters
389 (object Parameter "aStore"
391 (object Parameter "aId"
394 concurrency "Sequential"
395 opExportControl "Public"
397 (object Operation "UpdateStoreL"
399 parameters (list Parameters
400 (object Parameter "aStore"
401 type "CPermanentFileStore")
402 (object Parameter "aId"
405 concurrency "Sequential"
406 opExportControl "Public"
408 class_attributes (list class_attribute_list
409 (object ClassAttribute "iDueTime"
412 (object ClassAttribute "iPersists"
415 (object ClassAttribute "iEnabled"
418 exportControl "Public")))
419 (object Class "TScheduleEntry"
423 |TScheduleEntry knows what time it's next due after the time it gets passed. It is defined in terms of a start time and a time interval. So, when you pass it a time, if the time is before its start time it returns its start time, otherwise it adds its interval to its start time till the time it comes up with is after the time it got passed, and returns that.
425 |TScheduleEntry is abstract; it has 4 subclasses:
427 |TScheduleEntryHourly
429 |TScheduleEntryMonthly
430 |TScheduleEntryYearly
432 |The subclasses are necessary only because 'TTime operator + ' needs a concrete subclass of TTimeIntervalBase as the other operand. You specify which kind you want to create with the 'enum TIntervalType' parameter. This determines how the Interval member is interpreted, i.e. if it's 1 and your interval type is EHourly then the actual interval is 1 hour; if it's EDaily then it's 1 day etc.
437 operations (list Operations
438 (object Operation "NextScheduledTime"
441 concurrency "Sequential"
442 opExportControl "Public"
444 (object Class "TScheduledTask"
448 |A TScheduledTask is a kind of placeholder for the real task, which is a CScheduledTask. It keeps a reference to the client proxy representing the client which scheduled it, and a reference to the real task.
449 |When it's due it tells both of them of this fact.
451 operations (list Operations
452 (object Operation "OnDue"
454 concurrency "Sequential"
455 opExportControl "Public"
457 class_attributes (list class_attribute_list
458 (object ClassAttribute "iClient"
461 (object ClassAttribute "iTask"
463 type "CScheduledTask")))
464 (object Class "CScheduledTask"
468 |This is where the real task data is kept:
469 | - name (TName), Id (TInt), data (HBufC), how many times it repeats (TInt), when it's valid until (TTime), its priority
470 | - if it's repeat is specified as zero or less it repeats forever, or until it is explicitly deleted
471 | - tasks with high priority get executed before tasks with low priority
473 |It only needs to be a C-class 'cos of the HBufC* member.
478 operations (list Operations
479 (object Operation "OnDue"
481 concurrency "Sequential"
482 opExportControl "Public"
484 class_attributes (list class_attribute_list
485 (object ClassAttribute "iInfo"
488 (object ClassAttribute "iData"
491 (object Class "TTaskInfo"
496 |This is passed to the scheduler when you schedule a task, and passed back again when you retireve it.
497 |You only need to specify iRepeat, iName and iPriority; the ID is filled in by the scheduler and can be retrieved and examined later.
499 class_attributes (list class_attribute_list
500 (object ClassAttribute "iRepeat"
503 (object ClassAttribute "iName"
506 (object ClassAttribute "iTaskId"
509 (object ClassAttribute "iPriority"
512 (object Class "CTaskExecutor"
516 |This class encapsulates the actual task executing business.
517 |It's initialized with:
518 | - the name of the executing program
519 | - the name of the file where the task are kept
521 |When it's told to execute, it:
522 | - creates a new process, keeping a handle to it
523 | - logs on to the process
524 | - runs the executing program in it
526 | - creates a new clean up stack
527 | - opens the file with the tasks in it
528 | - internalizes the tasks
529 | - executes them how it likes
530 |When the program (hence the process ) terminates, the CTaskExecutor runs. It examines the exit code of the dead process. If the program exited cleanly, and the exit code is KErrNone, the CTaskExecutor
531 |just cleans up by closing the process, deleting the file with the tasks in it, and then deleting itself. Otherwise it does some error handling which is STILL NOT IMPLEMENTED, closes the process, deletes the task-file and then itself
533 superclasses (list inheritance_relationship_list
534 (object Inheritance_Relationship
537 quidu "3587E0BF03E4"))
538 operations (list Operations
539 (object Operation "ExecuteL"
542 concurrency "Sequential"
543 opExportControl "Public"
545 class_attributes (list class_attribute_list
546 (object ClassAttribute "iProcess"
549 (object ClassAttribute "iTaskFileName"
552 (object ClassAttribute "iClientFileName"
555 (object Class "TScheduleBackup"
559 |The TScheduleBackup class encapsulates management of the scheduler's backup store. The store has a path & name defined at compile-time, and accessible to the TScheduleBackup only. The store is a permanent file store whose root contains a CScheduleIndex. This is an array of (TInt ScheduleId, TStreamId).
560 |So, when the BackupL(...) is called, this class:
562 |- internalizes the index
563 |- asks the index for the stream Id mapped to the Id of the schedule it's been passed
564 |- does the appropriate action based on the TBackupAction enum (one of EAdd, EEdit, EDelete)
565 |- updates the index, saves the index
566 |If things go wrong it calls Revert() on the store and then closes it, else it calls Commit() and then closes it. It keeps a count of the changes it's made, when it has made 5 changes it compacts the store.
568 used_nodes (list uses_relationship_list
569 (object Uses_Relationship
571 supplier "CScheduleIndex"
572 quidu "3587DC95028C")
573 (object Uses_Relationship
576 quidu "34D1CB1C0073")
577 (object Uses_Relationship
579 supplier "TScheduleIndexEntry"
580 quidu "3588F2210143"))
581 operations (list Operations
582 (object Operation "BackupL()"
584 concurrency "Sequential"
585 opExportControl "Public"
587 (object Operation "RestoreFromBackupL()"
589 concurrency "Sequential"
590 opExportControl "Public"
592 (object Operation "BackupL"
594 parameters (list Parameters
595 (object Parameter "aSchedule"
597 (object Parameter "TBackupAction aAction"))
599 concurrency "Sequential"
600 opExportControl "Public"
602 (object Operation "CreateEmptyBackupL"
605 concurrency "Sequential"
606 opExportControl "Public"
608 (object Operation "RestoreFromBackupL"
610 parameters (list Parameters
611 (object Parameter "aSchedules"
612 type "TDblQue<CSchedule>"))
614 concurrency "Sequential"
615 opExportControl "Public"
617 (object Operation "DoAddToBackupL"
619 parameters (list Parameters
620 (object Parameter "aStore"
621 type "CPermanentFileStore")
622 (object Parameter "aSchedule"
625 concurrency "Sequential"
626 opExportControl "Public"
628 (object Operation "DoEditBackupL"
630 parameters (list Parameters
631 (object Parameter "aStore"
632 type "CPermanentFileStore")
633 (object Parameter "aSchedule"
636 concurrency "Sequential"
637 opExportControl "Public"
639 (object Operation "DoRemoveFromBackupL"
641 parameters (list Parameters
642 (object Parameter "aStore"
643 type "CPermanentFileStore")
644 (object Parameter "aScheduleId"
647 concurrency "Sequential"
648 opExportControl "Public"
650 (object Operation "BackupName"
652 parameters (list Parameters
653 (object Parameter "aFileName"
656 concurrency "Sequential"
657 opExportControl "Public"
659 (object Operation "DoCompactL"
662 concurrency "Sequential"
663 opExportControl "Public"
665 class_attributes (list class_attribute_list
666 (object ClassAttribute "iChangesToStore"
669 (object Class "CScheduleIndex"
673 |Root stream of backup store.
674 |Manages mapping of schedule Ids onto stream Ids.
676 used_nodes (list uses_relationship_list
677 (object Uses_Relationship
680 quidu "34D1CB1C0073"))
681 operations (list Operations
682 (object Operation "UpdateStoreL"
684 parameters (list Parameters
685 (object Parameter "aStore"
686 type "CPermanentFileStore"))
688 concurrency "Sequential"
689 opExportControl "Public"
691 (object Operation "RestoreL"
693 parameters (list Parameters
694 (object Parameter "aStore"
697 concurrency "Sequential"
698 opExportControl "Public"
700 (object Operation "FindL"
702 parameters (list Parameters
703 (object Parameter "aScheduleId"
705 result "TScheduleIndexEntry"
706 concurrency "Sequential"
707 opExportControl "Public"
709 (object Class "CActive"
711 (object Class "CScheduleTimer"
715 |Derived from CTimer. Initialised to KMaxTTime; its time is subsequently set by the task scheduler.
716 |When it runs, it tells the task scheduler.
718 (object Class "CEnvironmentChangeNotifier"
720 (object Class "$UNNAMED$0"
722 (object Class "$UNNAMED$1"
724 fields (list has_relationship_list
725 (object Has_Relationship
727 supplier "$UNNAMED$0"
728 quidu "3587F7C900C4")))
729 (object Class "TScheduleIndexEntry"
731 operations (list Operations
732 (object Operation "ExternalizeL"
734 concurrency "Sequential"
735 opExportControl "Public"
737 (object Operation "InternalizeL"
739 concurrency "Sequential"
740 opExportControl "Public"
742 class_attributes (list class_attribute_list
743 (object ClassAttribute "iStreamId"
746 (object ClassAttribute "iScheduleId"
749 (object Class "RScheduler"
753 |This is the client-side representation of a session with the scheduler; thus this is the API for the thing.
755 |N.B. There are in fact two 'ScheduleTask' functions, distinguished by their parameters. One schedules a task with an existing, persistent schedule, the other creates a new transient schedule and schedules the task with that.
757 used_nodes (list uses_relationship_list
758 (object Uses_Relationship
760 supplier "TScheduleEntryInfo"
761 quidu "3588FA7702BE")
762 (object Uses_Relationship
765 quidu "3587DA760264")
766 (object Uses_Relationship
768 supplier "TScheduleState"
769 quidu "358FA35103AF")
770 (object Uses_Relationship
772 supplier "TSchedulerItemRef"
773 quidu "358FAACE01FD"))
774 operations (list Operations
775 (object Operation "Register"
777 parameters (list Parameters
778 (object Parameter "argname"
782 concurrency "Sequential"
783 opExportControl "Public"
785 (object Operation "CreatePersistentSchedule"
787 parameters (list Parameters
788 (object Parameter "argname"
792 concurrency "Sequential"
793 opExportControl "Public"
795 (object Operation "DeleteSchedule"
797 parameters (list Parameters
798 (object Parameter "argname"
802 concurrency "Sequential"
803 opExportControl "Public"
805 (object Operation "DisableSchedule"
807 parameters (list Parameters
808 (object Parameter "argname"
812 concurrency "Sequential"
813 opExportControl "Public"
815 (object Operation "EnableSchedule"
817 parameters (list Parameters
818 (object Parameter "argname"
822 concurrency "Sequential"
823 opExportControl "Public"
825 (object Operation "EditSchedule"
827 parameters (list Parameters
828 (object Parameter "argname"
832 concurrency "Sequential"
833 opExportControl "Public"
835 (object Operation "ScheduleTask"
837 parameters (list Parameters
838 (object Parameter "argname"
842 concurrency "Sequential"
843 opExportControl "Public"
845 (object Operation "DeleteTask"
847 parameters (list Parameters
848 (object Parameter "argname"
852 concurrency "Sequential"
853 opExportControl "Public"
855 (object Operation "GetScheduleRefsL"
857 parameters (list Parameters
858 (object Parameter "argname"
862 concurrency "Sequential"
863 opExportControl "Public"
865 (object Operation "GetScheduleL"
867 parameters (list Parameters
868 (object Parameter "argname"
872 concurrency "Sequential"
873 opExportControl "Public"
875 (object Operation "GetTaskRefsL"
877 parameters (list Parameters
878 (object Parameter "argname"
882 concurrency "Sequential"
883 opExportControl "Public"
885 (object Operation "GetTaskInfoL"
887 parameters (list Parameters
888 (object Parameter "argname"
892 concurrency "Sequential"
893 opExportControl "Public"
895 (object Operation "GetTaskDataSize"
897 parameters (list Parameters
898 (object Parameter "argname"
902 concurrency "Sequential"
903 opExportControl "Public"
905 (object Class "TScheduleEntryInfo"
910 |This is passed to the scheduler when you create a schedule, and passed back again when you retireve it.
911 |You need one of these for each schedule entry in your schedule.
913 class_attributes (list class_attribute_list
914 (object ClassAttribute "iIntervalType"
916 type "TIntervalType")
917 (object ClassAttribute "iInterval"
920 (object ClassAttribute "iStartTime"
923 (object ClassAttribute "iValidityPeriod"
925 type "TTimeIntervalMinutes")))
926 (object Class "TScheduleState"
928 class_attributes (list class_attribute_list
929 (object ClassAttribute "iName"
932 (object ClassAttribute "iDueTime"
935 (object ClassAttribute "iPersists"
938 (object ClassAttribute "iEnabled"
941 (object Class "TSchedulerItemRef"
943 class_attributes (list class_attribute_list
944 (object ClassAttribute "iName"
947 (object ClassAttribute "iHandle"
950 (object Association "iClient"
952 roles (list role_list
953 (object Role "$UNNAMED$2"
955 supplier "CClientProxy"
956 quidu "34D1CB1B03A7")
957 (object Role "$UNNAMED$3"
959 supplier "TScheduledTask"
960 quidu "34D1CCE902E3")))
961 (object Association "$UNNAMED$4"
963 roles (list role_list
964 (object Role "$UNNAMED$5"
966 supplier "CTaskScheduler"
969 (object Role "$UNNAMED$6"
971 supplier "CServiceTimer"
974 (object Association "iPendingSchedules"
976 roles (list role_list
977 (object Role "$UNNAMED$7"
980 quidu "34D1CB1C0073")
981 (object Role "$UNNAMED$8"
983 supplier "CTaskScheduler"
984 quidu "34D1C70C0186")))
985 (object Association "iClient"
987 roles (list role_list
988 (object Role "$UNNAMED$9"
990 supplier "CClientProxy"
992 client_cardinality (value cardinality "1..1")
994 (object Role "$UNNAMED$10"
996 supplier "CSchSession"
998 client_cardinality (value cardinality "1..1"))))
999 (object Association "iTaskScheduler"
1001 roles (list role_list
1002 (object Role "$UNNAMED$11"
1004 supplier "CTaskScheduler"
1005 quidu "34D1C70C0186"
1006 client_cardinality (value cardinality "1..1")
1008 (object Role "$UNNAMED$12"
1010 supplier "CSchSession"
1011 quidu "34D1C70C014A"
1012 client_cardinality (value cardinality "1..1"))))
1013 (object Association "iClient"
1015 roles (list role_list
1016 (object Role "$UNNAMED$13"
1018 supplier "CClientProxy"
1019 quidu "34D1CB1B03A7"
1021 (object Role "$UNNAMED$14"
1023 supplier "TScheduledTask"
1024 quidu "34D1CCE902E3")))
1025 (object Association "iTask"
1027 roles (list role_list
1028 (object Role "$UNNAMED$15"
1030 supplier "CScheduledTask"
1031 quidu "3587D90700A3"
1032 client_cardinality (value cardinality "1..1")
1034 (object Role "$UNNAMED$16"
1036 supplier "TScheduledTask"
1037 quidu "34D1CCE902E3"
1038 client_cardinality (value cardinality "1..1"))))
1039 (object Association "iTasks"
1041 roles (list role_list
1042 (object Role "$UNNAMED$17"
1044 supplier "CSchedule"
1045 quidu "34D1CB1C0073"
1046 client_cardinality (value cardinality "1..1")
1048 (object Role "$UNNAMED$18"
1050 supplier "TScheduledTask"
1051 quidu "34D1CCE902E3"
1052 client_cardinality (value cardinality "0..n")
1053 is_navigable TRUE)))
1054 (object Association "iBackup"
1056 roles (list role_list
1057 (object Role "$UNNAMED$19"
1059 supplier "CTaskScheduler"
1060 quidu "34D1C70C0186"
1061 client_cardinality (value cardinality "1..1")
1063 (object Role "$UNNAMED$20"
1065 supplier "TScheduleBackup"
1066 quidu "3587DC9303DE"
1067 client_cardinality (value cardinality "1..1")
1068 is_navigable TRUE)))
1069 (object Association "iClients"
1071 roles (list role_list
1072 (object Role "$UNNAMED$21"
1074 supplier "CTaskScheduler"
1075 quidu "34D1C70C0186"
1076 client_cardinality (value cardinality "1..1")
1078 (object Role "$UNNAMED$22"
1080 supplier "CClientProxy"
1081 quidu "34D1CB1B03A7"
1082 client_cardinality (value cardinality "0..n")
1083 is_navigable TRUE)))
1084 (object Association "iPending"
1086 roles (list role_list
1087 (object Role "$UNNAMED$23"
1089 supplier "CSchedule"
1090 quidu "34D1CB1C0073"
1091 client_cardinality (value cardinality "0..n")
1093 (object Role "$UNNAMED$24"
1095 supplier "CTaskScheduler"
1096 quidu "34D1C70C0186"
1097 client_cardinality (value cardinality "1..1"))))
1098 (object Association "iSchedules"
1100 roles (list role_list
1101 (object Role "$UNNAMED$25"
1103 supplier "CTaskScheduler"
1104 quidu "34D1C70C0186"
1105 client_cardinality (value cardinality "1..1")
1107 (object Role "$UNNAMED$26"
1109 supplier "CSchedule"
1110 quidu "34D1CB1C0073"
1111 client_cardinality (value cardinality "0..n")
1112 is_navigable TRUE)))
1113 (object Association "iTaskScheduler"
1115 roles (list role_list
1116 (object Role "$UNNAMED$27"
1118 supplier "CTaskScheduler"
1119 quidu "34D1C70C0186"
1120 client_cardinality (value cardinality "1..1")
1122 (object Role "$UNNAMED$28"
1124 supplier "CScheduleTimer"
1125 quidu "3587E1E90360"
1126 client_cardinality (value cardinality "1..1"))))
1127 (object Association "iTimer"
1129 roles (list role_list
1130 (object Role "$UNNAMED$29"
1132 supplier "CTaskScheduler"
1133 quidu "34D1C70C0186"
1134 client_cardinality (value cardinality "1..1")
1136 (object Role "$UNNAMED$30"
1138 supplier "CScheduleTimer"
1139 quidu "3587E1E90360"
1140 client_cardinality (value cardinality "1..1")
1141 is_navigable TRUE)))
1142 (object Association "iNotifier"
1144 roles (list role_list
1145 (object Role "$UNNAMED$31"
1147 supplier "CTaskScheduler"
1148 quidu "34D1C70C0186"
1149 client_cardinality (value cardinality "1..1")
1151 (object Role "$UNNAMED$32"
1153 supplier "CEnvironmentChangeNotifier"
1154 quidu "3587E6D100B3"
1155 client_cardinality (value cardinality "1..1")
1156 is_navigable TRUE)))
1157 (object Association "iEntries"
1159 roles (list role_list
1160 (object Role "$UNNAMED$33"
1162 supplier "CSchedule"
1163 quidu "34D1CB1C0073"
1164 client_cardinality (value cardinality "1..1")
1166 (object Role "$UNNAMED$34"
1168 supplier "TScheduleEntry"
1169 quidu "34D1CB1C0091"
1170 client_cardinality (value cardinality "1..n")
1171 is_navigable TRUE)))
1172 (object Association "$UNNAMED$35"
1174 roles (list role_list
1175 (object Role "$UNNAMED$36"
1177 supplier "CSchServer"
1178 quidu "34D1C70C0110"
1181 (object Role "$UNNAMED$37"
1183 supplier "CSchSession"
1184 quidu "34D1C70C014A"
1185 is_navigable TRUE)))
1186 (object Association "iTaskScheduler"
1188 roles (list role_list
1189 (object Role "$UNNAMED$38"
1191 supplier "CSchServer"
1192 quidu "34D1C70C0110"
1193 client_cardinality (value cardinality "1..1")
1195 (object Role "$UNNAMED$39"
1197 supplier "CTaskScheduler"
1198 quidu "34D1C70C0186"
1199 client_cardinality (value cardinality "1..1")
1200 is_navigable TRUE)))
1201 (object Association "iClient"
1203 roles (list role_list
1204 (object Role "$UNNAMED$40"
1206 supplier "CClientProxy"
1207 quidu "34D1CB1B03A7"
1208 client_cardinality (value cardinality "1..1")
1210 (object Role "$UNNAMED$41"
1212 supplier "TScheduledTask"
1213 quidu "34D1CCE902E3"
1214 client_cardinality (value cardinality "0..n"))))
1215 (object Association "iTasks"
1217 roles (list role_list
1218 (object Role "$UNNAMED$42"
1220 supplier "CClientProxy"
1221 quidu "34D1CB1B03A7"
1222 client_cardinality (value cardinality "1..1")
1224 (object Role "$UNNAMED$43"
1226 supplier "CScheduledTask"
1227 quidu "3587D90700A3"
1228 client_cardinality (value cardinality "0..n")
1229 is_navigable TRUE)))
1230 (object Association "iEntries"
1232 roles (list role_list
1233 (object Role "$UNNAMED$44"
1235 supplier "CScheduleIndex"
1236 quidu "3587DC95028C"
1237 client_cardinality (value cardinality "1..1")
1239 (object Role "$UNNAMED$45"
1241 supplier "TScheduleIndexEntry"
1242 quidu "3588F2210143"
1243 client_cardinality (value cardinality "0..n")
1244 is_navigable TRUE)))
1245 (object Class_Category "fdbfs"
1247 exportControl "Public"
1248 logical_models (list unit_reference_list)
1249 logical_presentations (list unit_reference_list)))
1250 logical_presentations (list unit_reference_list
1251 (object ClassDiagram "Main"
1259 items (list diagram_item_list
1260 (object ClassView "Class" "CTaskExecutor" @1
1261 IncludeAttribute TRUE
1262 IncludeOperation TRUE
1263 location (2608, 1472)
1264 label (object ItemLabel
1266 location (2355, 1316)
1270 label "CTaskExecutor")
1271 quidu "3587DB8B0352"
1272 compartment (object Compartment
1274 location (2344, 1376)
1281 (object ClassView "Class" "CActive" @2
1282 location (2624, 896)
1283 label (object ItemLabel
1285 location (2538, 847)
1290 quidu "3587E0BF03E4"
1293 (object ClassView "Class" "CScheduledTask" @3
1294 IncludeAttribute TRUE
1295 location (1264, 1664)
1296 label (object ItemLabel
1298 location (1094, 1533)
1302 label "CScheduledTask")
1303 quidu "3587D90700A3"
1304 compartment (object Compartment
1306 location (1090, 1593)
1310 compartmentItems (list Compartment
1315 (object ClassView "Class" "TScheduleEntry" @4
1316 IncludeAttribute TRUE
1317 IncludeOperation TRUE
1318 location (272, 1328)
1319 label (object ItemLabel
1325 label "TScheduleEntry")
1326 quidu "34D1CB1C0091"
1327 compartment (object Compartment
1336 (object ClassView "Class" "TScheduledTask" @5
1337 IncludeAttribute TRUE
1338 IncludeOperation TRUE
1339 location (768, 1360)
1340 label (object ItemLabel
1342 location (554, 1229)
1346 label "TScheduledTask")
1347 quidu "34D1CCE902E3"
1348 compartment (object Compartment
1350 location (546, 1289)
1357 (object AssociationViewNew "iTask" @6
1358 location (847, 1646)
1359 label (object SegLabel @7
1361 location (854, 1611)
1380 quidu "3587DB0F00BF"
1381 roleview_list (list RoleViews
1382 (object RoleView "$UNNAMED$15" @8
1384 location (-737, 286)
1385 quidu "3587DB100337"
1389 origin_attachment (847, 1646)
1390 terminal_attachment (1081, 1646)
1391 label (object SegLabel @9
1393 location (999, 1699)
1403 (object RoleView "$UNNAMED$16" @10
1405 location (-737, 286)
1406 quidu "3587DB100338"
1409 vertices (list Points
1414 origin_attachment (847, 1646)
1415 terminal_attachment (768, 1503)
1416 label (object SegLabel @11
1418 location (704, 1586)
1428 (object ClassView "Class" "CSchSession" @12
1429 IncludeAttribute TRUE
1430 IncludeOperation TRUE
1431 location (2656, 576)
1432 label (object ItemLabel
1434 location (2465, 495)
1438 label "CSchSession")
1439 quidu "34D1C70C014A"
1440 compartment (object Compartment
1442 location (2459, 555)
1449 (object ClassView "Class" "CClientProxy" @13
1450 IncludeAttribute TRUE
1451 IncludeOperation TRUE
1452 location (1984, 1552)
1453 label (object ItemLabel
1455 location (1747, 1396)
1459 label "CClientProxy")
1460 quidu "34D1CB1B03A7"
1461 compartment (object Compartment
1463 location (1737, 1456)
1470 (object AssociationViewNew "iClient" @14
1471 location (2206, 894)
1472 label (object SegLabel @15
1474 location (2191, 883)
1493 quidu "3587D95D009D"
1494 roleview_list (list RoleViews
1495 (object RoleView "$UNNAMED$9" @16
1497 location (-978, 238)
1498 quidu "3587D95D02D8"
1502 origin_attachment (2206, 894)
1503 terminal_attachment (2206, 1384)
1504 label (object SegLabel @17
1506 location (2259, 1277)
1516 (object RoleView "$UNNAMED$10" @18
1518 location (-978, 238)
1519 quidu "3587D95D0314"
1522 vertices (list Points
1527 origin_attachment (2206, 894)
1528 terminal_attachment (2450, 576)
1529 label (object SegLabel @19
1531 location (2415, 607)
1541 (object AssociationViewNew "iClient" @20
1542 location (1363, 1438)
1543 label (object SegLabel @21
1545 location (1359, 1411)
1564 quidu "3587EB2F016F"
1565 roleview_list (list RoleViews
1566 (object RoleView "$UNNAMED$40" @22
1568 location (595, -210)
1569 quidu "3587EB300379"
1573 origin_attachment (1363, 1438)
1574 terminal_attachment (1728, 1438)
1575 label (object SegLabel @23
1577 location (1666, 1491)
1587 (object RoleView "$UNNAMED$41" @24
1589 location (595, -210)
1590 quidu "3587EB3003BF"
1594 origin_attachment (1363, 1438)
1595 terminal_attachment (999, 1438)
1596 label (object SegLabel @25
1598 location (1087, 1475)
1608 (object AssociationViewNew "iTasks" @26
1609 location (1587, 1631)
1610 label (object SegLabel @27
1612 location (1598, 1594)
1631 quidu "3587EB3F03CB"
1632 roleview_list (list RoleViews
1633 (object RoleView "$UNNAMED$42" @28
1636 quidu "3587EB4300CE"
1640 origin_attachment (1587, 1631)
1641 terminal_attachment (1728, 1631)
1642 label (object SegLabel @29
1644 location (1673, 1687)
1654 (object RoleView "$UNNAMED$43" @30
1657 quidu "3587EB43010A"
1661 origin_attachment (1587, 1631)
1662 terminal_attachment (1447, 1631)
1663 label (object SegLabel @31
1665 location (1498, 1579)
1675 (object ClassView "Class" "CSchedule" @32
1676 IncludeAttribute TRUE
1677 IncludeOperation TRUE
1679 label (object ItemLabel
1686 quidu "34D1CB1C0073"
1687 compartment (object Compartment
1696 (object AssociationViewNew "iEntries" @33
1697 location (175, 1098)
1698 label (object SegLabel @34
1700 location (175, 1039)
1719 quidu "3587E7340282"
1720 roleview_list (list RoleViews
1721 (object RoleView "$UNNAMED$33" @35
1723 location (-65, -502)
1724 quidu "3587E736019F"
1728 origin_attachment (175, 1098)
1729 terminal_attachment (175, 961)
1730 label (object SegLabel @36
1742 (object RoleView "$UNNAMED$34" @37
1744 location (-65, -502)
1745 quidu "3587E73601DB"
1749 origin_attachment (175, 1098)
1750 terminal_attachment (175, 1235)
1751 label (object SegLabel @38
1753 location (118, 1209)
1763 (object AssociationViewNew "iTasks" @39
1764 location (540, 1089)
1765 label (object SegLabel @40
1767 location (544, 1030)
1786 quidu "3587DB2A00FA"
1787 roleview_list (list RoleViews
1788 (object RoleView "$UNNAMED$17" @41
1790 location (-1124, -271)
1791 quidu "3587DB2A02A9"
1795 origin_attachment (540, 1089)
1796 terminal_attachment (540, 961)
1797 label (object SegLabel @42
1809 (object RoleView "$UNNAMED$18" @43
1811 location (-1124, -271)
1812 quidu "3587DB2A02DB"
1816 origin_attachment (540, 1089)
1817 terminal_attachment (540, 1217)
1818 label (object SegLabel @44
1820 location (488, 1191)
1830 (object ClassView "Class" "CSchServer" @45
1831 IncludeAttribute TRUE
1832 IncludeOperation TRUE
1833 location (2144, 144)
1834 label (object ItemLabel
1841 quidu "34D1C70C0110"
1846 (object AssociationViewNew "$UNNAMED$35" @46
1847 location (2608, 125)
1848 quidu "3587E7B603A2"
1849 roleview_list (list RoleViews
1850 (object RoleView "$UNNAMED$36" @47
1852 location (112, -531)
1853 quidu "3587E7B7035D"
1857 origin_attachment (2608, 125)
1858 terminal_attachment (2329, 125))
1859 (object RoleView "$UNNAMED$37" @48
1861 location (112, -531)
1862 quidu "3587E7B7035E"
1865 vertices (list Points
1870 origin_attachment (2608, 125)
1871 terminal_attachment (2656, 483))))
1872 (object ClassView "Class" "CScheduleTimer" @49
1874 label (object ItemLabel
1880 label "CScheduleTimer")
1881 quidu "3587E1E90360"
1885 (object ClassView "Class" "CTaskScheduler" @50
1886 IncludeAttribute TRUE
1887 IncludeOperation TRUE
1888 location (1536, 848)
1889 label (object ItemLabel
1891 location (1209, 517)
1895 label "CTaskScheduler")
1896 quidu "34D1C70C0186"
1897 compartment (object Compartment
1899 location (1192, 577)
1906 (object AssociationViewNew "iTaskScheduler" @51
1907 location (2169, 528)
1908 label (object SegLabel @52
1910 location (2120, 488)
1925 label "iTaskScheduler"
1929 quidu "3587D96F036A"
1930 roleview_list (list RoleViews
1931 (object RoleView "$UNNAMED$11" @53
1933 location (-1015, -128)
1934 quidu "3587D97102CC"
1938 origin_attachment (2169, 528)
1939 terminal_attachment (1889, 528)
1940 label (object SegLabel @54
1942 location (1934, 581)
1952 (object RoleView "$UNNAMED$12" @55
1954 location (-1015, -128)
1955 quidu "3587D9710313"
1959 origin_attachment (2169, 528)
1960 terminal_attachment (2450, 528)
1961 label (object SegLabel @56
1963 location (2407, 500)
1973 (object AssociationViewNew "iClients" @57
1974 location (1731, 1287)
1975 label (object SegLabel @58
1977 location (1731, 1282)
1996 quidu "3587DD3F0377"
1997 roleview_list (list RoleViews
1998 (object RoleView "$UNNAMED$21" @59
2000 location (-749, 231)
2001 quidu "3587DD4003B5"
2005 origin_attachment (1731, 1287)
2006 terminal_attachment (1731, 1191)
2007 label (object SegLabel @60
2009 location (1680, 1224)
2019 (object RoleView "$UNNAMED$22" @61
2021 location (-749, 231)
2022 quidu "3587DD41001D"
2026 origin_attachment (1731, 1287)
2027 terminal_attachment (1731, 1384)
2028 label (object SegLabel @62
2030 location (1801, 1350)
2040 (object AssociationViewNew "iPending" @63
2042 label (object SegLabel @64
2063 quidu "3587E24B0126"
2064 roleview_list (list RoleViews
2065 (object RoleView "$UNNAMED$23" @65
2067 location (-440, 435)
2068 quidu "3587E24C038B"
2072 origin_attachment (888, 819)
2073 terminal_attachment (594, 819)
2074 label (object SegLabel @66
2086 (object RoleView "$UNNAMED$24" @67
2088 location (-440, 435)
2089 quidu "3587E24C03C7"
2093 origin_attachment (888, 819)
2094 terminal_attachment (1183, 819)
2095 label (object SegLabel @68
2097 location (1122, 875)
2107 (object AssociationViewNew "iSchedules" @69
2109 label (object SegLabel @70
2130 quidu "3587E2510297"
2131 roleview_list (list RoleViews
2132 (object RoleView "$UNNAMED$25" @71
2134 location (360, -940)
2135 quidu "3587E2520357"
2139 origin_attachment (888, 644)
2140 terminal_attachment (1183, 644)
2141 label (object SegLabel @72
2143 location (1137, 697)
2153 (object RoleView "$UNNAMED$26" @73
2155 location (360, -940)
2156 quidu "3587E25203B1"
2160 origin_attachment (888, 644)
2161 terminal_attachment (594, 644)
2162 label (object SegLabel @74
2174 (object AssociationViewNew "iTaskScheduler" @75
2175 location (1616, 144)
2176 label (object SegLabel @76
2178 location (1647, 147)
2193 label "iTaskScheduler"
2197 quidu "3587E7BA027B"
2198 roleview_list (list RoleViews
2199 (object RoleView "$UNNAMED$38" @77
2201 location (160, -320)
2202 quidu "3587E7BC004D"
2206 origin_attachment (1616, 144)
2207 terminal_attachment (1959, 144)
2208 label (object SegLabel @78
2210 location (1924, 198)
2220 (object RoleView "$UNNAMED$39" @79
2222 location (160, -320)
2223 quidu "3587E7BC004E"
2226 vertices (list Points
2231 origin_attachment (1616, 144)
2232 terminal_attachment (1536, 505)
2233 label (object SegLabel @80
2235 location (1610, 423)
2245 (object AssociationViewNew "iTaskScheduler" @81
2246 location (1349, 156)
2247 label (object SegLabel @82
2249 location (1304, 156)
2264 label "iTaskScheduler"
2268 quidu "3587E34000D8"
2269 roleview_list (list RoleViews
2270 (object RoleView "$UNNAMED$28" @83
2272 location (-347, -692)
2273 quidu "3587E341036F"
2277 origin_attachment (1349, 156)
2278 terminal_attachment (1024, 156)
2279 label (object SegLabel @84
2281 location (1058, 210)
2291 (object RoleView "$UNNAMED$27" @85
2293 location (-347, -692)
2294 quidu "3587E341030B"
2297 vertices (list Points
2302 origin_attachment (1349, 156)
2303 terminal_attachment (1536, 505)
2304 label (object SegLabel @86
2306 location (1463, 464)
2316 (object AssociationViewNew "iTimer" @87
2318 label (object SegLabel @88
2339 quidu "3587E356021A"
2340 roleview_list (list RoleViews
2341 (object RoleView "$UNNAMED$30" @89
2343 location (-752, -339)
2344 quidu "3587E3570172"
2347 vertices (list Points
2352 origin_attachment (944, 509)
2353 terminal_attachment (884, 237)
2354 label (object SegLabel @90
2366 (object RoleView "$UNNAMED$29" @91
2368 location (-752, -339)
2369 quidu "3587E3570104"
2373 origin_attachment (944, 509)
2374 terminal_attachment (1183, 509)
2375 label (object SegLabel @92
2377 location (1166, 567)
2387 (object UsesView "" @93
2388 quidu "3587DC1100C0"
2392 origin_attachment (2240, 1500)
2393 terminal_attachment (2335, 1500))
2394 (object InheritView "" @94
2395 quidu "3587E0D20247"
2399 origin_attachment (2621, 1304)
2400 terminal_attachment (2621, 957))))
2401 (object ClassDiagram "Backing Up"
2409 items (list diagram_item_list
2410 (object ClassView "Class" "CSchedule" @95
2411 location (560, 1408)
2412 label (object ItemLabel
2414 location (336, 1327)
2419 quidu "34D1CB1C0073"
2420 compartment (object Compartment
2422 location (327, 1387)
2426 compartmentItems (list Compartment
2427 "iEntries : TScheduleEntry"))
2431 (object ClassView "Class" "TScheduleBackup" @96
2432 IncludeOperation TRUE
2433 location (2048, 400)
2434 label (object ItemLabel
2440 label "TScheduleBackup")
2441 quidu "3587DC9303DE"
2442 compartment (object Compartment
2444 location (1804, 129)
2448 compartmentItems (list Compartment
2449 "iChangesToStore : TInt"))
2453 (object ClassView "Class" "CTaskScheduler" @97
2454 location (2432, 1184)
2455 label (object ItemLabel
2457 location (2185, 1103)
2461 label "CTaskScheduler")
2462 quidu "34D1C70C0186"
2463 compartment (object Compartment
2465 location (2174, 1163)
2469 compartmentItems (list Compartment
2470 "iBackup : TScheduleBackup"))
2474 (object AssociationViewNew "iSchedules" @98
2475 location (1715, 1472)
2476 label (object SegLabel @99
2478 location (1746, 1432)
2497 quidu "3587E2510297"
2498 roleview_list (list RoleViews
2499 (object RoleView "$UNNAMED$25" @100
2501 location (1187, -112)
2502 quidu "3587E2520357"
2505 vertices (list Points
2510 origin_attachment (1715, 1472)
2511 terminal_attachment (2434, 1277)
2512 label (object SegLabel @101
2514 location (2487, 1421)
2524 (object RoleView "$UNNAMED$26" @102
2526 location (1187, -112)
2527 quidu "3587E25203B1"
2531 origin_attachment (1715, 1472)
2532 terminal_attachment (802, 1472)
2533 label (object SegLabel @103
2535 location (954, 1525)
2545 (object AssociationViewNew "iBackup" @104
2546 location (2262, 917)
2547 label (object SegLabel @105
2549 location (2262, 891)
2568 quidu "3587DCB40377"
2569 roleview_list (list RoleViews
2570 (object RoleView "$UNNAMED$20" @106
2573 quidu "3587DCB6019A"
2577 origin_attachment (2262, 917)
2578 terminal_attachment (2262, 743)
2579 label (object SegLabel @107
2581 location (2212, 799)
2591 (object RoleView "$UNNAMED$19" @108
2594 quidu "3587DCB60149"
2598 origin_attachment (2262, 917)
2599 terminal_attachment (2262, 1091)
2600 label (object SegLabel @109
2602 location (2317, 1059)
2612 (object ClassView "Class" "CScheduleIndex" @110
2613 IncludeAttribute TRUE
2614 IncludeOperation TRUE
2616 label (object ItemLabel
2622 label "CScheduleIndex")
2623 quidu "3587DC95028C"
2624 compartment (object Compartment
2633 (object ClassView "Class" "TScheduleIndexEntry" @111
2635 label (object ItemLabel
2641 label "TScheduleIndexEntry")
2642 quidu "3588F2210143"
2643 compartment (object Compartment
2649 compartmentItems (list Compartment
2652 "iStreamId : TStreamId"
2653 "iScheduleId : TInt"))
2657 (object AssociationViewNew "iEntries" @112
2659 label (object SegLabel @113
2680 quidu "3588F2700223"
2681 roleview_list (list RoleViews
2682 (object RoleView "$UNNAMED$44" @114
2685 quidu "3588F27003E6"
2689 origin_attachment (537, 516)
2690 terminal_attachment (537, 641)
2691 label (object SegLabel @115
2703 (object RoleView "$UNNAMED$45" @116
2706 quidu "3588F271003A"
2710 origin_attachment (537, 516)
2711 terminal_attachment (537, 392)
2712 label (object SegLabel @117
2724 (object UsesView "" @118
2725 quidu "3587E067001C"
2729 origin_attachment (362, 927)
2730 terminal_attachment (362, 1315))
2731 (object UsesView "" @119
2732 quidu "3587E1C4008C"
2735 vertices (list Points
2741 origin_attachment (1981, 743)
2742 terminal_attachment (631, 1315))
2743 (object UsesView "" @120
2744 quidu "3587E061038E"
2748 origin_attachment (1795, 687)
2749 terminal_attachment (1134, 687))
2750 (object UsesView "" @121
2751 quidu "3588F2E200FB"
2755 origin_attachment (1795, 353)
2756 terminal_attachment (786, 353))))
2757 (object ClassDiagram "Client-side"
2765 items (list diagram_item_list
2766 (object ClassView "Class" "RScheduler" @122
2768 label (object ItemLabel
2775 quidu "3588FA6800AA"
2776 compartment (object Compartment
2782 compartmentItems (list Compartment
2784 "CreatePersistentSchedule( )"
2786 "DisableSchedule( )"
2791 "GetScheduleRefsL( )"
2795 "GetTaskDataSize( )"))
2799 (object ClassView "Class" "TScheduleEntryInfo" @123
2800 location (1792, 976)
2801 label (object ItemLabel
2803 location (1470, 820)
2807 label "TScheduleEntryInfo")
2808 quidu "3588FA7702BE"
2809 compartment (object Compartment
2811 location (1453, 880)
2815 compartmentItems (list Compartment
2816 "iIntervalType : TIntervalType"
2817 "iInterval : TInterval"
2818 "iStartTime : TTime"
2819 "iValidityPeriod : TTimeIntervalMinutes"))
2823 (object ClassView "Class" "TTaskInfo" @124
2824 location (1600, 1408)
2825 label (object ItemLabel
2827 location (1460, 1252)
2832 quidu "3587DA760264"
2833 compartment (object Compartment
2835 location (1458, 1312)
2839 compartmentItems (list Compartment
2843 "iPriority : TInt"))
2847 (object UsesView "" @125
2848 quidu "3588FB460095"
2852 origin_attachment (1065, 956)
2853 terminal_attachment (1444, 956))
2854 (object UsesView "" @126
2855 quidu "3588FB490220"
2858 vertices (list Points
2863 origin_attachment (800, 1065)
2864 terminal_attachment (1449, 1408))
2865 (object NoteView @127
2866 location (480, 1296)
2867 label (object ItemLabel
2869 location (258, 1118)
2873 |This diagram shows the classes
2874 |which are visible to clients: that is, they make up part of the interface
2878 (object ClassView "Class" "TScheduleState" @128
2879 IncludeAttribute TRUE
2880 location (1632, 560)
2881 label (object ItemLabel
2883 location (1471, 404)
2887 label "TScheduleState")
2888 quidu "358FA35103AF"
2892 (object UsesView "" @129
2893 quidu "358FA3AB02BE"
2897 origin_attachment (1065, 659)
2898 terminal_attachment (1459, 659))
2899 (object ClassView "Class" "TSchedulerItemRef" @130
2900 location (1648, 208)
2901 label (object ItemLabel
2903 location (1463, 102)
2907 label "TSchedulerItemRef")
2908 quidu "358FAACE01FD"
2909 compartment (object Compartment
2911 location (1458, 162)
2915 compartmentItems (list Compartment
2921 (object UsesView "" @131
2922 quidu "358FAB050351"
2925 vertices (list Points
2930 origin_attachment (1065, 302)
2931 terminal_attachment (1449, 302))))
2932 (object ClassDiagram "Main"
2940 items (list diagram_item_list))))
2941 root_subsystem (object SubSystem "Component View"
2943 physical_models (list unit_reference_list)
2944 physical_presentations (list unit_reference_list
2945 (object Module_Diagram "Main"
2953 items (list diagram_item_list))))
2954 process_structure (object Processes
2957 (object Process_Diagram "Deployment View"
2959 title "Deployment View"
2965 items (list diagram_item_list))))
2966 properties (object Properties
2967 attributes (list Attribute_Set
2978 name "default__Project"
2979 value (list Attribute_Set
2984 quid "34B4B32D038E"))