* System.Web20.csproj: added ObjectInputStream.cs and ObjectOutputStream.cs
[mono.git] / mcs / class / System.Web / System.Web.UI / TemplateInstanceAttribute.cs
1 //
2 // System.Web.UI.TemplateInstanceAttribute.cs
3 //
4 // Noam Lampert  (noaml@mainsoft.com)
5 //
6 //
7 // Permission is hereby granted, free of charge, to any person obtaining
8 // a copy of this software and associated documentation files (the
9 // "Software"), to deal in the Software without restriction, including
10 // without limitation the rights to use, copy, modify, merge, publish,
11 // distribute, sublicense, and/or sell copies of the Software, and to
12 // permit persons to whom the Software is furnished to do so, subject to
13 // the following conditions:
14 // 
15 // The above copyright notice and this permission notice shall be
16 // included in all copies or substantial portions of the Software.
17 // 
18 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
21 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
22 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
23 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
24 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 //
26 #if NET_2_0
27
28 using System.ComponentModel;
29 using System.Security.Permissions;
30
31 namespace System.Web.UI
32 {
33         // attributes
34         [AttributeUsage (AttributeTargets.Property)]
35         public sealed class TemplateInstanceAttribute : Attribute
36         {
37                 #region Fields
38
39                 readonly TemplateInstance _instance;
40
41                 public static readonly TemplateInstanceAttribute Single;
42                 public static readonly TemplateInstanceAttribute Multiple;
43                 public static readonly TemplateInstanceAttribute Default;
44
45                 #endregion
46
47                 #region Constructors
48
49                 static TemplateInstanceAttribute () {
50                         Single = new TemplateInstanceAttribute (TemplateInstance.Single);
51                         Multiple = new TemplateInstanceAttribute (TemplateInstance.Multiple);
52                         Default = Multiple;
53                 }
54
55                 #endregion
56
57                 #region Properties
58
59                 public TemplateInstance Instances { get { return _instance; } }
60
61                 #endregion
62
63                 #region Methods
64
65                 public TemplateInstanceAttribute (TemplateInstance instance) {
66                         _instance = instance;
67                 }
68
69                 public override bool IsDefaultAttribute () {
70                         return Equals (Default);
71                 }
72
73                 public override bool Equals (object obj) {
74                         if (this == obj)
75                                 return true;
76
77                         TemplateInstanceAttribute other = obj as TemplateInstanceAttribute;
78                         if (obj == null)
79                                 return false;
80
81                         return Instances == other.Instances;
82                 }
83
84                 public override int GetHashCode () {
85                         return (int) Instances;
86                 }
87
88                 #endregion
89         }
90 }
91
92 #endif