@@ -18,7 +18,7 @@ public FormBase(FormMain myParent)
18
18
MyParent = myParent ;
19
19
InitializeComponent ( ) ;
20
20
}
21
- internal static LoadPatternGridView _loadPatternGridView ;
21
+ internal static TemplateGridView _templateGridView ;
22
22
23
23
// List of TEAM working environments.
24
24
public static TeamEnvironmentCollection TeamEnvironmentCollection { get ; set ; } = new TeamEnvironmentCollection ( ) ;
@@ -36,7 +36,7 @@ internal static class GlobalParameters
36
36
public static string CorePath { get ; } = Application . StartupPath + @"\" + @"Core\" ;
37
37
public static string VdwConfigurationPath { get ; } = RootPath + @"\Configuration\" ;
38
38
public static string VdwConfigurationFileName { get ; } = "VDW_Configuration.txt" ;
39
- public static string LoadPatternListFileName { get ; } = "loadPatternCollection .json" ;
39
+ public static string TemplateCollectionFileName { get ; } = "templateCollection .json" ;
40
40
41
41
// TEAM core file names, not meant to be updated
42
42
public static string TeamConfigurationFileName { get ; } = "TEAM_configuration" ;
@@ -59,15 +59,14 @@ internal static class VdwConfigurationSettings
59
59
internal static EventLog VdwEventLog { get ; set ; } = new EventLog ( ) ;
60
60
61
61
public static string VdwSchema { get ; set ; } = "dbo" ;
62
- public static string LoadPatternPath { get ; set ; } = GlobalParameters . RootPath + @"\LoadPatterns \" ;
62
+ public static string TemplatePath { get ; set ; } = GlobalParameters . RootPath + @"\Templates \" ;
63
63
public static string VdwMetadatPath { get ; set ; } = Application . StartupPath + @"\Metadata\" ;
64
64
public static string VdwOutputPath { get ; set ; } = Application . StartupPath + @"\Output\" ;
65
65
public static string VdwExamplesPath { get ; set ; } = Application . StartupPath + @"\Examples\" ;
66
66
67
- public static List < LoadPatternFileHandling > patternList { get ; set ; }
67
+ public static List < TemplateHandling > templateList { get ; set ; }
68
68
69
- // Related to TEAM configuration settings
70
- //public static string TeamEnvironmentFilePath { get; set; } = GlobalParameters.RootPath + @"\Configuration\";
69
+ // Related to TEAM configuration settings.
71
70
public static string TeamConfigurationPath { get ; set ; } = Application . StartupPath + @"\Configuration\" ;
72
71
public static string TeamConnectionsPath { get ; set ; } = Application . StartupPath + @"\Configuration\" ;
73
72
public static string TeamEnvironmentFilePath { get ; set ; } = GlobalParameters . RootPath + @"\Configuration\" + GlobalParameters . JsonEnvironmentFileName + GlobalParameters . JsonExtension ;
@@ -79,7 +78,7 @@ internal static class VdwConfigurationSettings
79
78
// In memory settings for reloading.
80
79
public static string SelectedSubTab { get ; set ; }
81
80
public static string SelectedMainTab { get ; set ; }
82
- public static string SelectedPatternText { get ; set ; }
81
+ public static string SelectedTemplateText { get ; set ; }
83
82
}
84
83
}
85
84
}
0 commit comments