1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| Quintiq file version 2.0
| #parent: #root
| StaticMethod CreateForComponent (LibOpt_Run run, LibOpt_Component component, LibOpt_StatisticTime statistictime_type,
| Boolean isabsolute) as LibOpt_StatisticTimeTotal
| {
| Description: 'Create a `LibOpt_StatisticTimeTotal` instance for the given "run" (`LibOpt_Run`), which collects time values on the \'Component\' level.'
| TextBody:
| [*
| statistictime := LibOpt_StatisticTime::Create( run, typeof( LibOpt_StatisticTimeTotal ),
| component.Name(),
| component, // Component
| statistictime_type, // Parent
| true, // Is component
| false, // Is type
| isabsolute
| ).astype( LibOpt_StatisticTimeTotal );
|
| return statistictime;
| *]
| }
|
|