Fix #328490
[mono.git] / mcs / class / System / System.ComponentModel / RecommendedAsConfigurableAttribute.cs
index 5776448c3869f648364e83cae4467c310aab98e1..bab33341dec9b960dbcd74c397d6a40c4857471f 100644 (file)
@@ -1,64 +1,91 @@
-//\r
-// System.ComponentModel.RecommendedAsConfigurableAttribute\r
-//\r
-// Authors:\r
-//     Tim Coleman (tim@timcoleman.com)\r
-//\r
-// Copyright (C) Tim Coleman, 2002\r
-//\r
-\r
-using System;\r
-\r
-namespace System.ComponentModel {\r
-       [AttributeUsage (AttributeTargets.Property)]\r
-       public class RecommendedAsConfigurableAttribute : Attribute {\r
-\r
-               #region Fields\r
-\r
-               bool recommendedAsConfigurable;\r
-\r
-               public static readonly RecommendedAsConfigurableAttribute Default = new RecommendedAsConfigurableAttribute (false);\r
-               public static readonly RecommendedAsConfigurableAttribute No = new RecommendedAsConfigurableAttribute (false);\r
-               public static readonly RecommendedAsConfigurableAttribute Yes = new RecommendedAsConfigurableAttribute (true);\r
-\r
-               #endregion // Fields\r
-               \r
-               #region Constructors\r
-\r
-               public RecommendedAsConfigurableAttribute (bool recommendedAsConfigurable)\r
-               {\r
-                       this.recommendedAsConfigurable = recommendedAsConfigurable;\r
-               }\r
-\r
-               #endregion // Constructors\r
-\r
-               #region Properties\r
-\r
-               public bool RecommendedAsConfigurable {\r
-                       get { return recommendedAsConfigurable; }\r
-               }\r
-\r
-               #endregion // Properties\r
-\r
-               #region Methods\r
-\r
-               public override bool Equals (object obj)\r
-               {\r
-                       if (!(obj is RecommendedAsConfigurableAttribute))\r
-                               return false;\r
-\r
-                       return ((RecommendedAsConfigurableAttribute) obj).RecommendedAsConfigurable == recommendedAsConfigurable;\r
-               }\r
-\r
-               [MonoTODO]\r
-               public override int GetHashCode ()\r
-               {\r
-                       throw new NotImplementedException (); \r
-               }\r
-\r
-               public override bool IsDefaultAttribute ()\r
-               {\r
-                       return (!recommendedAsConfigurable);\r
-               }\r
-       }\r
-}\r
+//
+// System.ComponentModel.RecommendedAsConfigurableAttribute
+//
+// Authors:
+//     Tim Coleman (tim@timcoleman.com)
+//  Andreas Nahr (ClassDevelopment@A-SoftTech.com)
+//
+// Copyright (C) Tim Coleman, 2002
+// (C) 2003 Andreas Nahr
+//
+
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+// 
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+// 
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+//
+
+using System;
+
+namespace System.ComponentModel {
+
+       [AttributeUsage (AttributeTargets.Property)]
+#if NET_2_0
+       [Obsolete ("Use SettingsBindableAttribute instead of RecommendedAsConfigurableAttribute")]
+#endif
+       public class RecommendedAsConfigurableAttribute : Attribute {
+
+               #region Fields
+
+               private bool recommendedAsConfigurable;
+
+               public static readonly RecommendedAsConfigurableAttribute Default = new RecommendedAsConfigurableAttribute (false);
+               public static readonly RecommendedAsConfigurableAttribute No = new RecommendedAsConfigurableAttribute (false);
+               public static readonly RecommendedAsConfigurableAttribute Yes = new RecommendedAsConfigurableAttribute (true);
+
+               #endregion // Fields
+
+               #region Constructors
+
+               public RecommendedAsConfigurableAttribute (bool recommendedAsConfigurable)
+               {
+                       this.recommendedAsConfigurable = recommendedAsConfigurable;
+               }
+
+               #endregion // Constructors
+
+               #region Properties
+
+               public bool RecommendedAsConfigurable {
+                       get { return recommendedAsConfigurable; }
+               }
+
+               #endregion // Properties
+
+               #region Methods
+
+               public override bool Equals (object obj)
+               {
+                       if (!(obj is RecommendedAsConfigurableAttribute))
+                               return false;
+                       return ((RecommendedAsConfigurableAttribute) obj).RecommendedAsConfigurable == recommendedAsConfigurable;
+               }
+
+               public override int GetHashCode ()
+               {
+                       return recommendedAsConfigurable.GetHashCode ();
+               }
+
+               public override bool IsDefaultAttribute ()
+               {
+                       return recommendedAsConfigurable == RecommendedAsConfigurableAttribute.Default.RecommendedAsConfigurable;
+               }
+
+               #endregion // Methods
+       }
+}