| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
 | | Quintiq file version 2.0 |  | #parent: #root |  | StaticMethod HasCommunicationChannelRoot (LibDMF_CommunicationChannelRoot channelRoot_i, output Strings feedbacks_o) const declarative remote as Boolean |  | { |  |   Description: |  |   [* |  |     Return true if CommunicationChannelRoot exists |  |     Used for precondition check in Designer |  |   *] |  |   TextBody: |  |   [* |  |     value := true; |  |      |  |     if( isnull( channelRoot_i ) ) |  |     { |  |       feedbacks_o.Add( "A communication channel root object is required. Please verify if such object exist" ); |  |       value := false; |  |     } |  |      |  |     return value; |  |   *] |  | } | 
 |