| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
 | | Quintiq file version 2.0 |  | #parent: #root |  | StaticMethod StopPrecondition (LibOpt_Runs runs) remote as Boolean |  | { |  |   TextBody: |  |   [* |  |     feedback := FeedbackObject::LocalFeedback(); |  |      |  |     isanyrunning := exists( runs, Elements, run, true, run.StopPrecondition() ) |  |      |  |     if( not feedback.CheckHard( isanyrunning ) ) |  |     { |  |       feedback.AddHard( Translations::LibOpt_Run_Stop_NotRunning_Or_PostProcessing() ); |  |     } |  |      |  |     return feedback.IsAllowed(); |  |   *] |  |   InterfaceProperties { Accessibility: 'Module' } |  | } | 
 |