merge -r 61110:61111
[mono.git] / mcs / class / System.Web / System.Web.Configuration_2.0 / Compiler.cs
1 //
2 // System.Web.Configuration.CompilerCollection
3 //
4 // Authors:
5 //      Chris Toshok (toshok@ximian.com)
6 //
7 // (C) 2005 Novell, Inc (http://www.novell.com)
8 //
9
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30
31 #if NET_2_0
32 using System;
33 using System.CodeDom.Compiler;
34 using System.ComponentModel;
35 using System.Configuration;
36
37 namespace System.Web.Configuration
38 {
39         public sealed class Compiler : ConfigurationElement
40         {
41                 static ConfigurationProperty compilerOptionsProp;
42                 static ConfigurationProperty extensionProp;
43                 static ConfigurationProperty languageProp;
44                 static ConfigurationProperty typeProp;
45                 static ConfigurationProperty warningLevelProp;
46
47                 static ConfigurationPropertyCollection properties;
48
49                 static Compiler ()
50                 {
51                         compilerOptionsProp = new ConfigurationProperty("compilerOptions", typeof (string), "");
52                         extensionProp = new ConfigurationProperty("extension", typeof (string), "");
53                         languageProp = new ConfigurationProperty("language", typeof (string), "", ConfigurationPropertyOptions.IsRequired | ConfigurationPropertyOptions.IsKey);
54                         typeProp = new ConfigurationProperty("type", typeof (string), "", ConfigurationPropertyOptions.IsRequired);
55                         warningLevelProp = new ConfigurationProperty("warningLevel", typeof (int), 0,
56                                                                      TypeDescriptor.GetConverter (typeof (int)),
57                                                                      new IntegerValidator (0, 4),
58                                                                      ConfigurationPropertyOptions.None);
59
60                         properties = new ConfigurationPropertyCollection ();
61                         properties.Add (compilerOptionsProp);
62                         properties.Add (extensionProp);
63                         properties.Add (languageProp);
64                         properties.Add (typeProp);
65                         properties.Add (warningLevelProp);
66                 }
67
68                 internal Compiler ()
69                 {
70                 }
71
72                 public Compiler (string compilerOptions, string extension, string language, string type, int warningLevel)
73                 {
74                         this.CompilerOptions = compilerOptions;
75                         this.Extension = extension;
76                         this.Language = language;
77                         this.Type = type;
78                         this.WarningLevel = warningLevel;
79                 }
80
81                 [ConfigurationProperty ("compilerOptions", DefaultValue = "")]
82                 public string CompilerOptions {
83                         get { return (string) base[compilerOptionsProp]; }
84                         internal set { base[compilerOptionsProp] = value; }
85                 }
86
87                 [ConfigurationProperty ("extension", DefaultValue = "")]
88                 public string Extension {
89                         get { return (string) base[extensionProp]; }
90                         internal set { base[extensionProp] = value; }
91                 }
92
93                 [ConfigurationProperty ("language", DefaultValue = "", Options = ConfigurationPropertyOptions.IsRequired | ConfigurationPropertyOptions.IsKey)]
94                 public string Language {
95                         get { return (string) base[languageProp]; }
96                         internal set { base[languageProp] = value; }
97                 }
98
99                 [ConfigurationProperty ("type", DefaultValue = "", Options = ConfigurationPropertyOptions.IsRequired)]
100                 public string Type {
101                         get { return (string) base[typeProp]; }
102                         internal set { base[typeProp] = value; }
103                 }
104
105                 [IntegerValidator (MinValue = 0, MaxValue = 4)]
106                 [ConfigurationProperty ("warningLevel", DefaultValue = "0")]
107                 public int WarningLevel {
108                         get { return (int) base[warningLevelProp]; }
109                         internal set { base[warningLevelProp] = value; }
110                 }
111
112                 protected override ConfigurationPropertyCollection Properties {
113                         get { return properties; }
114                 }
115         }
116 }
117 #endif