Ver Fonte

2004-06-03 Gonzalo Paniagua Javier <[email protected]>

	* Cscompmgd/Microsoft.CSharp/TODOAttribute.cs:
	* Microsoft.JScript/Microsoft.JScript/TODOAttribute.cs:
	* Microsoft.Web.Services/Microsoft.Web.Services/TODOAttribute.cs:
	* Mono.Data.MySql/Mono.Data.MySql/TODOAttribute.cs:
	* Mono.Data.PostgreSqlClient/Mono.Data.PostgreSqlClient/TODOAttribute.cs:
	* Mono.Data.SybaseClient/Mono.Data.SybaseClient/TODOAttribute.cs:
	* Mono.Data.SybaseClient/Mono.Data.SybaseTypes/TODOAttribute.cs:
	* Mono.Data.Tds/Mono.Data.Tds.Protocol/TODOAttribute.cs:
	* Mono.Data.TdsClient/Mono.Data.TdsClient/TODOAttribute.cs:
	* Mono.Data.TdsClient/Mono.Data.TdsTypes/TODOAttribute.cs:
	* System/Microsoft.Win32/TODOAttribute.cs:
	* System/System/TODOAttribute.cs:
	* System.Data/System.Data/TODOAttribute.cs:
	* System.Data.OracleClient/System.Data.OracleClient/TODOAttribute.cs:
	* System.Design/System.Design/TODOAttribute.cs:
	* System.Design/System.Web.UI.Design.WebControls/TODOAttribute.cs:
	* System.Design/System.Windows.Forms.Design/TODOAttribute.cs:
	* System.DirectoryServices/System.DirectoryServices/TODOAttribute.cs:
	* System.Drawing.Design/Assembly/TODOAttribute.cs:
	* System.Messaging/System.Messaging/MonoTODO.cs:
	* System.Web/System.Web/TODOAttribute.cs:
	* System.Web.Mobile/System.Web.Mobile/TODOAttribute.cs:
	* System.Web.Services/System.Web.Services/TODOAttribute.cs:
	* System.Windows.Forms/System.Resources/ResXResourceReader.cs:
	* System.Windows.Forms/System.Windows.Forms/TODOAttribute.cs:
	* System.Windows.Forms/WINELib/TODOAttribute.cs:
	* System.XML/System.Xml/TODOAttribute.cs:
	Added Comment property.

svn path=/trunk/mcs/; revision=28778
Gonzalo Paniagua Javier há 21 anos atrás
pai
commit
590c7733ba
26 ficheiros alterados com 104 adições e 0 exclusões
  1. 4 0
      mcs/class/Cscompmgd/Microsoft.CSharp/TODOAttribute.cs
  2. 4 0
      mcs/class/Microsoft.JScript/Microsoft.JScript/TODOAttribute.cs
  3. 4 0
      mcs/class/Microsoft.Web.Services/Microsoft.Web.Services/TODOAttribute.cs
  4. 4 0
      mcs/class/Mono.Data.MySql/Mono.Data.MySql/TODOAttribute.cs
  5. 4 0
      mcs/class/Mono.Data.PostgreSqlClient/Mono.Data.PostgreSqlClient/TODOAttribute.cs
  6. 4 0
      mcs/class/Mono.Data.SybaseClient/Mono.Data.SybaseClient/TODOAttribute.cs
  7. 4 0
      mcs/class/Mono.Data.SybaseClient/Mono.Data.SybaseTypes/TODOAttribute.cs
  8. 4 0
      mcs/class/Mono.Data.Tds/Mono.Data.Tds.Protocol/TODOAttribute.cs
  9. 4 0
      mcs/class/Mono.Data.TdsClient/Mono.Data.TdsClient/TODOAttribute.cs
  10. 4 0
      mcs/class/Mono.Data.TdsClient/Mono.Data.TdsTypes/TODOAttribute.cs
  11. 4 0
      mcs/class/System.Data.OracleClient/System.Data.OracleClient/TODOAttribute.cs
  12. 4 0
      mcs/class/System.Data/System.Data/TODOAttribute.cs
  13. 4 0
      mcs/class/System.Design/System.Design/TODOAttribute.cs
  14. 4 0
      mcs/class/System.Design/System.Web.UI.Design.WebControls/TODOAttribute.cs
  15. 4 0
      mcs/class/System.Design/System.Windows.Forms.Design/TODOAttribute.cs
  16. 4 0
      mcs/class/System.DirectoryServices/System.DirectoryServices/TODOAttribute.cs
  17. 4 0
      mcs/class/System.Drawing.Design/Assembly/TODOAttribute.cs
  18. 4 0
      mcs/class/System.Messaging/System.Messaging/MonoTODO.cs
  19. 4 0
      mcs/class/System.Web.Mobile/System.Web.Mobile/TODOAttribute.cs
  20. 4 0
      mcs/class/System.Web.Services/System.Web.Services/TODOAttribute.cs
  21. 4 0
      mcs/class/System.Web/System.Web/TODOAttribute.cs
  22. 4 0
      mcs/class/System.Windows.Forms/System.Windows.Forms/TODOAttribute.cs
  23. 4 0
      mcs/class/System.Windows.Forms/WINELib/TODOAttribute.cs
  24. 4 0
      mcs/class/System.XML/System.Xml/TODOAttribute.cs
  25. 4 0
      mcs/class/System/Microsoft.Win32/TODOAttribute.cs
  26. 4 0
      mcs/class/System/System/TODOAttribute.cs

+ 4 - 0
mcs/class/Cscompmgd/Microsoft.CSharp/TODOAttribute.cs

@@ -29,5 +29,9 @@ namespace Microsoft.CSharp {
 		{
 			this.comment = comment;
 		}
+
+		public string Comment {
+			get { return comment; }
+		}
 	}
 }

+ 4 - 0
mcs/class/Microsoft.JScript/Microsoft.JScript/TODOAttribute.cs

@@ -34,5 +34,9 @@ namespace Microsoft.JScript.Tmp {
 		{
 			get { return comment; }
 		}
+
+		public string Comment {
+			get { return comment; }
+		}
 	}
 }

+ 4 - 0
mcs/class/Microsoft.Web.Services/Microsoft.Web.Services/TODOAttribute.cs

@@ -30,5 +30,9 @@ namespace Microsoft.Web.Services {
 		{
 			this.comment = comment;
 		}
+
+		public string Comment {
+			get { return comment; }
+		}
 	}
 }

+ 4 - 0
mcs/class/Mono.Data.MySql/Mono.Data.MySql/TODOAttribute.cs

@@ -29,5 +29,9 @@ namespace Mono.Data.MySql {
 		{
 			this.comment = comment;
 		}
+
+		public string Comment {
+			get { return comment; }
+		}
 	}
 }

+ 4 - 0
mcs/class/Mono.Data.PostgreSqlClient/Mono.Data.PostgreSqlClient/TODOAttribute.cs

@@ -29,5 +29,9 @@ namespace Mono.Data.PostgreSqlClient {
 		{
 			this.comment = comment;
 		}
+
+		public string Comment {
+			get { return comment; }
+		}
 	}
 }

+ 4 - 0
mcs/class/Mono.Data.SybaseClient/Mono.Data.SybaseClient/TODOAttribute.cs

@@ -29,5 +29,9 @@ namespace Mono.Data.SybaseClient {
 		{
 			this.comment = comment;
 		}
+
+		public string Comment {
+			get { return comment; }
+		}
 	}
 }

+ 4 - 0
mcs/class/Mono.Data.SybaseClient/Mono.Data.SybaseTypes/TODOAttribute.cs

@@ -29,5 +29,9 @@ namespace Mono.Data.SybaseTypes {
 		{
 			this.comment = comment;
 		}
+
+		public string Comment {
+			get { return comment; }
+		}
 	}
 }

+ 4 - 0
mcs/class/Mono.Data.Tds/Mono.Data.Tds.Protocol/TODOAttribute.cs

@@ -29,5 +29,9 @@ namespace Mono.Data.Tds.Protocol {
 		{
 			this.comment = comment;
 		}
+
+		public string Comment {
+			get { return comment; }
+		}
 	}
 }

+ 4 - 0
mcs/class/Mono.Data.TdsClient/Mono.Data.TdsClient/TODOAttribute.cs

@@ -29,5 +29,9 @@ namespace Mono.Data.TdsClient {
 		{
 			this.comment = comment;
 		}
+
+		public string Comment {
+			get { return comment; }
+		}
 	}
 }

+ 4 - 0
mcs/class/Mono.Data.TdsClient/Mono.Data.TdsTypes/TODOAttribute.cs

@@ -29,5 +29,9 @@ namespace Mono.Data.TdsTypes {
 		{
 			this.comment = comment;
 		}
+
+		public string Comment {
+			get { return comment; }
+		}
 	}
 }

+ 4 - 0
mcs/class/System.Data.OracleClient/System.Data.OracleClient/TODOAttribute.cs

@@ -29,5 +29,9 @@ namespace System.Data.OracleClient {
 		{
 			this.comment = comment;
 		}
+
+		public string Comment {
+			get { return comment; }
+		}
 	}
 }

+ 4 - 0
mcs/class/System.Data/System.Data/TODOAttribute.cs

@@ -29,5 +29,9 @@ namespace System.Data {
 		{
 			this.comment = comment;
 		}
+
+		public string Comment {
+			get { return comment; }
+		}
 	}
 }

+ 4 - 0
mcs/class/System.Design/System.Design/TODOAttribute.cs

@@ -29,5 +29,9 @@ namespace System { // Some classes are not under System.Design.* namespace
 		{
 			this.comment = comment;
 		}
+
+		public string Comment {
+			get { return comment; }
+		}
 	}
 }

+ 4 - 0
mcs/class/System.Design/System.Web.UI.Design.WebControls/TODOAttribute.cs

@@ -29,5 +29,9 @@ namespace System.Web.UI.Design.WebControls {
 		{
 			this.comment = comment;
 		}
+
+		public string Comment {
+			get { return comment; }
+		}
 	}
 }

+ 4 - 0
mcs/class/System.Design/System.Windows.Forms.Design/TODOAttribute.cs

@@ -29,5 +29,9 @@ namespace System.Windows.Forms.Design {
 		{
 			this.comment = comment;
 		}
+
+		public string Comment {
+			get { return comment; }
+		}
 	}
 }

+ 4 - 0
mcs/class/System.DirectoryServices/System.DirectoryServices/TODOAttribute.cs

@@ -30,5 +30,9 @@ namespace System.DirectoryServices {
 		{
 			this.comment = comment;
 		}
+
+		public string Comment {
+			get { return comment; }
+		}
 	}
 }

+ 4 - 0
mcs/class/System.Drawing.Design/Assembly/TODOAttribute.cs

@@ -28,4 +28,8 @@ internal class MonoTODOAttribute : Attribute {
 	{
 			this.comment = comment;
 	}
+
+		public string Comment {
+			get { return comment; }
+		}
 }

+ 4 - 0
mcs/class/System.Messaging/System.Messaging/MonoTODO.cs

@@ -21,5 +21,9 @@ namespace System.Messaging
 		}
 		
 		public MonoTODOAttribute() {}
+
+		public string Comment {
+			get { return comment; }
+		}
 	}
 }

+ 4 - 0
mcs/class/System.Web.Mobile/System.Web.Mobile/TODOAttribute.cs

@@ -29,5 +29,9 @@ namespace System.Web.Mobile {
 		{
 			this.comment = comment;
 		}
+
+		public string Comment {
+			get { return comment; }
+		}
 	}
 }

+ 4 - 0
mcs/class/System.Web.Services/System.Web.Services/TODOAttribute.cs

@@ -28,5 +28,9 @@ namespace System.Web.Services {
 		{
 			this.comment = comment;
 		}
+
+		public string Comment {
+			get { return comment; }
+		}
 	}
 }

+ 4 - 0
mcs/class/System.Web/System.Web/TODOAttribute.cs

@@ -29,5 +29,9 @@ namespace System.Web {
 		{
 			this.comment = comment;
 		}
+
+		public string Comment {
+			get { return comment; }
+		}
 	}
 }

+ 4 - 0
mcs/class/System.Windows.Forms/System.Windows.Forms/TODOAttribute.cs

@@ -28,5 +28,9 @@ namespace System {
 		{
 			this.comment = comment;
 		}
+
+		public string Comment {
+			get { return comment; }
+		}
 	}
 }

+ 4 - 0
mcs/class/System.Windows.Forms/WINELib/TODOAttribute.cs

@@ -28,5 +28,9 @@ namespace System.Windows.Forms {
 		{
 			this.comment = comment;
 		}
+
+		public string Comment {
+			get { return comment; }
+		}
 	}
 }

+ 4 - 0
mcs/class/System.XML/System.Xml/TODOAttribute.cs

@@ -28,5 +28,9 @@ namespace System.Xml {
 		{
 			this.comment = comment;
 		}
+
+		public string Comment {
+			get { return comment; }
+		}
 	}
 }

+ 4 - 0
mcs/class/System/Microsoft.Win32/TODOAttribute.cs

@@ -30,5 +30,9 @@ using System;
 		{
 			this.comment = comment;
 		}
+
+		public string Comment {
+			get { return comment; }
+		}
 	}
 }

+ 4 - 0
mcs/class/System/System/TODOAttribute.cs

@@ -28,5 +28,9 @@ namespace System {
 		{
 			this.comment = comment;
 		}
+
+		public string Comment {
+			get { return comment; }
+		}
 	}
 }