2008-02-16 Ivan N. Zlatev <contact@i-nz.net>
[mono.git] / mcs / class / System / System.ComponentModel / DataObjectMethodAttribute.cs
1 //
2 // (C) 2006 Mainsoft Corporation (http://www.mainsoft.com)
3 //
4 // Authors:
5 //      Konstantin Triger <kostat@mainsoft.com>
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
27 #if NET_2_0
28
29 using System;
30 using System.Collections.Generic;
31 using System.Text;
32
33 namespace System.ComponentModel
34 {
35         [AttributeUsageAttribute (AttributeTargets.Method)]
36         public sealed class DataObjectMethodAttribute : Attribute
37         {
38                 #region Fields
39
40                 readonly DataObjectMethodType _methodType;
41                 readonly bool _isDefault;
42
43                 #endregion
44
45                 #region Constructors
46
47                 public DataObjectMethodAttribute (DataObjectMethodType methodType) : this (methodType, false) { }
48                 public DataObjectMethodAttribute (DataObjectMethodType methodType, bool isDefault) {
49                         _methodType = methodType;
50                         _isDefault = isDefault;
51                 }
52
53                 #endregion
54
55                 #region Properties
56
57                 public DataObjectMethodType MethodType { get { return _methodType; } }
58                 public bool IsDefault { get { return _isDefault; } }
59
60                 #endregion
61
62                 #region Methods
63
64                 public override bool Match (object obj) {
65                         if (!(obj is DataObjectMethodAttribute))
66                                 return false;
67                         return ((DataObjectMethodAttribute) obj).MethodType == MethodType;
68                 }
69
70                 public override bool Equals (object obj) {
71                         return Match (obj) ?
72                                 ((DataObjectMethodAttribute) obj).IsDefault == IsDefault
73                                 : false;
74                 }
75
76                 public override int GetHashCode () {
77                         return MethodType.GetHashCode () ^ IsDefault.GetHashCode ();
78                 }
79
80                 #endregion
81         }
82 }
83
84 #endif