2004-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
[mono.git] / mcs / class / Microsoft.JScript / Microsoft.JScript / TODOAttribute.cs
1 //
2 // TODOAttribute.cs
3 //
4 // Author:
5 //   Ravi Pratap (ravi@ximian.com)
6 //
7 // (C) Ximian, Inc.  http://www.ximian.com
8 //
9
10 namespace Microsoft.JScript.Tmp {
11         using System;
12
13         /// <summary>
14         ///   The TODO attribute is used to flag all incomplete bits in our class libraries
15         /// </summary>
16         ///
17         /// <remarks>
18         ///   Use this to decorate any element which you think is not complete
19         /// </remarks>  
20         [AttributeUsage (AttributeTargets.All, AllowMultiple=true)]
21         internal class MonoTODOAttribute : Attribute {
22
23                 private string comment;
24                 
25                 public MonoTODOAttribute ()
26                 {}
27
28                 public MonoTODOAttribute (string comment)
29                 {
30                         this.comment = comment;
31                 }
32
33                 public string Comment
34                 {
35                         get { return comment; }
36                 }
37
38                 public string Comment {
39                         get { return comment; }
40                 }
41         }
42 }