Merge pull request #600 from tr8dr/master
[mono.git] / mcs / class / System.Configuration / System.Configuration / ConfigurationSectionGroup.cs
1 //
2 // System.Configuration.ConfigurationSection.cs
3 //
4 // Authors:
5 //      Duncan Mak (duncan@ximian.com)
6 //  Lluis Sanchez Gual (lluis@novell.com)
7 //
8 // Permission is hereby granted, free of charge, to any person obtaining
9 // a copy of this software and associated documentation files (the
10 // "Software"), to deal in the Software without restriction, including
11 // without limitation the rights to use, copy, modify, merge, publish,
12 // distribute, sublicense, and/or sell copies of the Software, and to
13 // permit persons to whom the Software is furnished to do so, subject to
14 // the following conditions:
15 // 
16 // The above copyright notice and this permission notice shall be
17 // included in all copies or substantial portions of the Software.
18 // 
19 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
20 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
21 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
22 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
23 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
24 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
25 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26 //
27 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
28 //
29
30 using System;
31
32 namespace System.Configuration
33 {
34         public class ConfigurationSectionGroup
35         {
36                 bool require_declaration;
37                 string name, type_name;
38
39                 ConfigurationSectionCollection sections;
40                 ConfigurationSectionGroupCollection groups;
41                 Configuration config;
42                 SectionGroupInfo group;
43                 
44                 public ConfigurationSectionGroup ()
45                 {
46                 }
47
48                 Configuration Config {
49                         get {
50                                 if (config == null)
51                                         throw new InvalidOperationException ("ConfigurationSectionGroup cannot be edited until it is added to a Configuration instance as its descendant");
52                                 return config;
53                         }
54                 }
55
56                 bool initialized;
57
58                 internal void Initialize (Configuration config, SectionGroupInfo group)
59                 {
60                         if (initialized)
61                                 throw new SystemException ("INTERNAL ERROR: this configuration section is being initialized twice: " + GetType ());
62                         initialized = true;
63                         this.config = config;
64                         this.group = group;
65                 }
66                 
67                 internal void SetName (string name)
68                 {
69                         this.name = name;
70                 }
71
72                 [MonoTODO]
73                 public void ForceDeclaration (bool require)
74                 {
75                         this.require_declaration = require;
76                 }
77
78                 public void ForceDeclaration ()
79                 {
80                         ForceDeclaration (true);
81                 }
82                 
83                 [MonoTODO]
84                 public bool IsDeclared {
85                         get { return false; }
86                 }
87
88                 [MonoTODO]
89                 public bool IsDeclarationRequired {
90                         get { return require_declaration; }
91                 }
92
93                 public string Name {
94                         get { return name; }
95                 }
96
97                 [MonoInternalNote ("Check if this is correct")]
98                 public string SectionGroupName {
99                         get { return group.XPath; }
100                 }
101
102                 public ConfigurationSectionGroupCollection SectionGroups {
103                         get {
104                                 if (groups == null) groups = new ConfigurationSectionGroupCollection (Config, group);
105                                 return groups;
106                         }
107                 }
108
109                 public ConfigurationSectionCollection Sections {
110                         get {
111                                 if (sections == null) sections = new ConfigurationSectionCollection (Config, group);
112                                 return sections;
113                         }
114                 }
115
116                 public string Type {
117                         get { return type_name;}
118                         set { type_name = value; }
119                 }
120         }
121 }
122