Fix some compiler warnings
[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 #if NET_2_0
31 using System;
32
33 namespace System.Configuration
34 {
35         public class ConfigurationSectionGroup
36         {
37                 bool require_declaration;
38                 string name, type_name;
39
40                 ConfigurationSectionCollection sections;
41                 ConfigurationSectionGroupCollection groups;
42                 Configuration config;
43                 SectionGroupInfo group;
44                 
45                 public ConfigurationSectionGroup ()
46                 {
47                 }
48
49                 Configuration Config {
50                         get {
51                                 if (config == null)
52                                         throw new InvalidOperationException ("ConfigurationSectionGroup cannot be edited until it is added to a Configuration instance as its descendant");
53                                 return config;
54                         }
55                 }
56
57                 bool initialized;
58
59                 internal void Initialize (Configuration config, SectionGroupInfo group)
60                 {
61                         if (initialized)
62                                 throw new SystemException ("INTERNAL ERROR: this configuration section is being initialized twice: " + GetType ());
63                         initialized = true;
64                         this.config = config;
65                         this.group = group;
66                 }
67                 
68                 internal void SetName (string name)
69                 {
70                         this.name = name;
71                 }
72
73                 [MonoTODO]
74                 public void ForceDeclaration (bool require)
75                 {
76                         this.require_declaration = require;
77                 }
78
79                 public void ForceDeclaration ()
80                 {
81                         ForceDeclaration (true);
82                 }
83                 
84                 [MonoTODO]
85                 public bool IsDeclared {
86                         get { return false; }
87                 }
88
89                 [MonoTODO]
90                 public bool IsDeclarationRequired {
91                         get { return require_declaration; }
92                 }
93
94                 public string Name {
95                         get { return name; }
96                 }
97
98                 [MonoInternalNote ("Check if this is correct")]
99                 public string SectionGroupName {
100                         get { return group.XPath; }
101                 }
102
103                 public ConfigurationSectionGroupCollection SectionGroups {
104                         get {
105                                 if (groups == null) groups = new ConfigurationSectionGroupCollection (Config, group);
106                                 return groups;
107                         }
108                 }
109
110                 public ConfigurationSectionCollection Sections {
111                         get {
112                                 if (sections == null) sections = new ConfigurationSectionCollection (Config, group);
113                                 return sections;
114                         }
115                 }
116
117                 public string Type {
118                         get { return type_name;}
119                         set { type_name = value; }
120                 }
121         }
122 }
123 #endif