| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- //
- // ReadOnlyAttribute.cs
- //
- // Author:
- // Chris J Breisch ([email protected])
- //
- // (C) 2002 Chris J Breisch
- //
- namespace System.ComponentModel {
- [AttributeUsage (AttributeTargets.All)]
- sealed public class ReadOnlyAttribute : Attribute {
- bool read_only;
-
- public static readonly ReadOnlyAttribute No;
- public static readonly ReadOnlyAttribute Yes;
- public static readonly ReadOnlyAttribute Default;
- static ReadOnlyAttribute ()
- {
- No = new ReadOnlyAttribute (false);
- Yes = new ReadOnlyAttribute (true);
- Default = new ReadOnlyAttribute (false);
- }
-
- public ReadOnlyAttribute (bool read_only)
- {
- this.read_only = read_only;
- }
- public bool IsReadOnly {
- get {
- return read_only;
- }
- }
- public override int GetHashCode ()
- {
- return base.GetHashCode ();
- }
- public override bool Equals (object o)
- {
- if (!(o is ReadOnlyAttribute))
- return false;
- return (((ReadOnlyAttribute) o).read_only == read_only);
- }
- public override bool IsDefaultAttribute ()
- {
- return Equals (Default);
- }
- }
- }
|