| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- //
- // System.ComponentModel.ListBindableAttribute
- //
- // Authors:
- // Gonzalo Paniagua Javier ([email protected])
- //
- // (C) 2002 Ximian, Inc (http://www.ximian.com)
- //
- using System;
- namespace System.ComponentModel
- {
- [AttributeUsage(AttributeTargets.All, AllowMultiple = false, Inherited = true)]
- public sealed class ListBindableAttribute : Attribute
- {
- public static readonly ListBindableAttribute Default = new ListBindableAttribute (true, true);
- public static readonly ListBindableAttribute No = new ListBindableAttribute (false, true);
- public static readonly ListBindableAttribute Yes = new ListBindableAttribute (true, true);
- bool deflt;
- bool bindable;
- private ListBindableAttribute (bool listBindable, bool deflt)
- {
- this.deflt = deflt;
- bindable = listBindable;
- }
-
- public ListBindableAttribute (bool listBindable)
- {
- deflt = false;
- bindable = true;
- }
- public ListBindableAttribute (BindableSupport flags)
- {
- bindable = (flags == BindableSupport.Yes);
- deflt = (flags == BindableSupport.Default);
- }
- public override bool Equals (object obj)
- {
- if (!(obj is ListBindableAttribute))
- return false;
- return (((ListBindableAttribute) obj).bindable == bindable &&
- ((ListBindableAttribute) obj).deflt == deflt);
- }
- public override int GetHashCode ()
- {
- return base.GetHashCode ();
- }
- public override bool IsDefaultAttribute ()
- {
- return deflt;
- }
- public bool ListBindable
- {
- get {
- return bindable;
- }
- }
- }
- }
|