2002-12-06 Gaurav Vaish <gvaish_mono@lycos.com>
authorGaurav Vaish <gvaish@mono-cvs.ximian.com>
Fri, 6 Dec 2002 14:52:01 +0000 (14:52 -0000)
committerGaurav Vaish <gvaish@mono-cvs.ximian.com>
Fri, 6 Dec 2002 14:52:01 +0000 (14:52 -0000)
* TODOAttribute.cs       : Added file.

svn path=/trunk/mcs/; revision=9406

mcs/class/System.Design/System.Design/ChangeLog [new file with mode: 0644]
mcs/class/System.Design/System.Design/TODOAttribute.cs [new file with mode: 0644]

diff --git a/mcs/class/System.Design/System.Design/ChangeLog b/mcs/class/System.Design/System.Design/ChangeLog
new file mode 100644 (file)
index 0000000..88db17b
--- /dev/null
@@ -0,0 +1,3 @@
+2002-12-06       Gaurav Vaish <gvaish_mono@lycos.com>
+
+       * TODOAttribute.cs       : Added file.
diff --git a/mcs/class/System.Design/System.Design/TODOAttribute.cs b/mcs/class/System.Design/System.Design/TODOAttribute.cs
new file mode 100644 (file)
index 0000000..5302fee
--- /dev/null
@@ -0,0 +1,33 @@
+//
+// TODOAttribute.cs
+//
+// Author:
+//   Ravi Pratap (ravi@ximian.com)
+//
+// (C) Ximian, Inc.  http://www.ximian.com
+//
+using System;
+
+namespace System.Web.UI.Design {
+
+       /// <summary>
+       ///   The TODO attribute is used to flag all incomplete bits in our class libraries
+       /// </summary>
+       ///
+       /// <remarks>
+       ///   Use this to decorate any element which you think is not complete
+       /// </remarks>
+       [AttributeUsage (AttributeTargets.All)]
+       internal class MonoTODOAttribute : Attribute {
+
+               string comment;
+
+               public MonoTODOAttribute ()
+               {}
+
+               public MonoTODOAttribute (string comment)
+               {
+                       this.comment = comment;
+               }
+       }
+}