-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdatafileaesop
executable file
·82 lines (62 loc) · 1.5 KB
/
datafileaesop
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
style obst
datacomponent aesop_database
end;
end;
style mach
event machmsgtype_rpc
end;
event machmsgtype_encrypted
end;
event machmsgtype_normal
end;
controlcomponent aesop_database_interface1
end;
controlcomponent aesop_database_interface2
end;
system aesop_mach_subsystem
initialcontrolcomponents : aesop_database_interface1, aesop_database_interface2;
controlcomponents : aesop_database_interface1, aesop_database_interface2;
end;
end;
style softbench
event xevent_keypress
end;
event xevent_keyrelease
end;
event xevent_buttonpress
end;
controlcomponent aesop_process1
end;
controlcomponent aesop_process2
end;
controlcomponent aesop_process3
end;
trigger start_aesop_process3
controlcomponent : aesop_process2;
inmessage : xevent_buttonpress;
outcalls : aesop_process3;
end;
system aesop_softbench_subsystem
initialcontrolcomponents : aesop_process1, aesop_process2;
controlcomponents : aesop_process1, aesop_process2, aesop_process3;
triggers : start_aesop_process3;
end;
end;
style interviews
controlcomponent aesop_window1
end;
controlcomponent aesop_window2
end;
system aesop_interviews_subsystem
initialcontrolcomponents : aesop_window1, aesop_window2;
controlcomponents : aesop_window1, aesop_window2;
end;
end;
style base
group aesop
subsystems : aesop_mach_subsystem, aesop_softbench_subsystem,
aesop_interviews_subsystem;
extendedshareddata : [aesop_database, [aesop_database_interface1,
aesop_database_interface2], []];
end;
end;