1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  | Quintiq file version 2.0 
 |  #parent: #root 
 |  MethodOverride SyncGroupsSeveritiesAndChecks 
 |  { 
 |    TextBody: 
 |    [* 
 |      // Create severities 
 |      severity_2 := SCK_Severity::FindCreate( this, SCK_Severity::SEVERITY_0_Warning_Name(), SCK_Severity::SEVERITY_0_Warning_Icon() ); 
 |      //severity_1 := SCK_Severity::FindCreate( this, SCK_Severity::SEVERITY_1_Issue_Name(), SCK_Severity::SEVERITY_1_Issue_Icon() ); 
 |       
 |      // group workflow 
 |      group_Workflow := SCK_Group::FindCreate( this, "Workflow_SWF", false, "05b. Process definitions", "Step definitions", "Web_Workflow", true ); 
 |       
 |      // Create checks for group Workflow 
 |      SCK_Check::FindCreate( this, typeof( SWF_ViolationStepDefinitionHasValidDueOffset ), group_Workflow, severity_2 ); 
 |      SCK_Check::FindCreate( this, typeof( SWF_ViolationStepDefinitionDependencyHasValidDependencyDueOffset ), group_Workflow, severity_2 ); 
 |    *] 
 |  } 
 |  
  |