2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / class / System / 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 && XML_DEP
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                 internal void Initialize (Configuration config, SectionGroupInfo group)
50                 {
51                         this.config = config;
52                         this.group = group;
53                 }
54                 
55                 internal void SetName (string name)
56                 {
57                         this.name = name;
58                 }
59
60                 [MonoTODO]
61                 public void RequireDeclaration (bool require)
62                 {
63                         this.require_declaration = require;
64                 }
65
66                 [MonoTODO]
67                 public bool IsDeclared {
68                         get { return require_declaration; }
69                 }
70
71                 public string Name {
72                         get { return name; }
73                 }
74
75                 public string Path {
76                         get { return group.XPath; }
77                 }
78
79                 public ConfigurationSectionGroupCollection SectionGroups {
80                         get {
81                                 if (groups == null) groups = new ConfigurationSectionGroupCollection (config, group);
82                                 return groups;
83                         }
84                 }
85
86                 public ConfigurationSectionCollection Sections {
87                         get {
88                                 if (sections == null) sections = new ConfigurationSectionCollection (config, group);
89                                 return sections;
90                         }
91                 }
92
93                 public string TypeName {
94                         get { return type_name;}
95                         set { type_name = value; }
96                 }
97         }
98 }
99 #endif