svn path=/trunk/mcs/; revision=78242
authorSebastien Pouliot <sebastien@ximian.com>
Wed, 30 May 2007 18:02:51 +0000 (18:02 -0000)
committerSebastien Pouliot <sebastien@ximian.com>
Wed, 30 May 2007 18:02:51 +0000 (18:02 -0000)
mcs/class/System/System.ComponentModel.Design/Changelog
mcs/class/System/System.ComponentModel.Design/IComponentDiscoveryService.cs [new file with mode: 0644]

index 881b120d35c403fcdf4645bbadbd89f6dcb1fa40..5a6720fb9a16cb5df5277b7667b8331a6036492d 100644 (file)
@@ -1,3 +1,7 @@
+2007-05-30  Sebastien Pouliot  <sebastien@ximian.com>
+
+       * IComponentDiscoveryService.cs: New 2.0 interface (required by SDD)
+
 2007-05-15 Adar Wesley <adarw@mainsoft.com>
 
        * MenuCommand.cs: added missing method overload Invoke
diff --git a/mcs/class/System/System.ComponentModel.Design/IComponentDiscoveryService.cs b/mcs/class/System/System.ComponentModel.Design/IComponentDiscoveryService.cs
new file mode 100644 (file)
index 0000000..c2c57f1
--- /dev/null
@@ -0,0 +1,41 @@
+//
+// System.ComponentModel.Design.IComponentDiscoveryService interface
+// 
+// Authors:
+//     Sebastien Pouliot  <sebastien@ximian.com>
+// 
+// Copyright (C) 2007 Novell, Inc (http://www.novell.com)
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+// 
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+// 
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+//
+
+#if NET_2_0
+
+using System.Collections;
+
+namespace System.ComponentModel.Design {
+
+       public interface IComponentDiscoveryService {
+
+               ICollection GetComponentTypes (IDesignerHost designerHost, Type baseType);
+       }
+}
+
+#endif