* ISupportInitializeNotification.cs: Add implemented interface.
authorRaja R Harinath <harinath@hurrynot.org>
Mon, 8 Jan 2007 12:10:22 +0000 (12:10 -0000)
committerRaja R Harinath <harinath@hurrynot.org>
Mon, 8 Jan 2007 12:10:22 +0000 (12:10 -0000)
* ICancelAddNew.cs, IIntellisenseBuilder.cs: New.
* INestedContainer.cs, INestedSite.cs: New.

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

mcs/class/System/System.ComponentModel/ChangeLog
mcs/class/System/System.ComponentModel/ICancelAddNew.cs [new file with mode: 0644]
mcs/class/System/System.ComponentModel/IIntellisenseBuilder.cs [new file with mode: 0644]
mcs/class/System/System.ComponentModel/INestedContainer.cs [new file with mode: 0644]
mcs/class/System/System.ComponentModel/INestedSite.cs [new file with mode: 0644]
mcs/class/System/System.ComponentModel/ISupportInitializeNotification.cs

index 58df28e639eab4329691502eb364e924be6247a7..9ec045fd28409bc5a19fb3914c3629e6864a3ae4 100644 (file)
@@ -1,3 +1,9 @@
+2007-01-08  Raja R Harinath  <rharinath@novell.com>
+
+       * ISupportInitializeNotification.cs: Add implemented interface.
+       * ICancelAddNew.cs, IIntellisenseBuilder.cs: New.
+       * INestedContainer.cs, INestedSite.cs: New.
+
 2007-01-02  Konstantin Triger  <kostat@mainsoft.com>
 
        * DataObjectAttribute.cs: Implemented.
diff --git a/mcs/class/System/System.ComponentModel/ICancelAddNew.cs b/mcs/class/System/System.ComponentModel/ICancelAddNew.cs
new file mode 100644 (file)
index 0000000..d39618b
--- /dev/null
@@ -0,0 +1,42 @@
+//
+// System.ComponentModel.ICancelAddNew.cs
+//
+// Authors:
+//   Raja R Harinath <rharinath@novell.com>
+//
+// (C) 2007 Novell, Inc.
+//
+
+//
+// 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
+
+namespace System.ComponentModel
+{
+       public interface ICancelAddNew
+       {
+               void CancelNew (int itemIndex);
+               void EndNew (int itemIndex);
+       }
+}
+
+#endif
diff --git a/mcs/class/System/System.ComponentModel/IIntellisenseBuilder.cs b/mcs/class/System/System.ComponentModel/IIntellisenseBuilder.cs
new file mode 100644 (file)
index 0000000..a9e3da8
--- /dev/null
@@ -0,0 +1,42 @@
+//
+// System.ComponentModel.IIntellisenseBuilder.cs
+//
+// Authors:
+//   Raja R Harinath <rharinath@novell.com>
+//
+// (C) 2007 Novell, Inc.
+//
+
+//
+// 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
+
+namespace System.ComponentModel
+{
+       public interface IIntellisenseBuilder
+       {
+               string Name { get; }
+               bool Show (string language, string value, ref string newValue);
+       }
+}
+
+#endif
diff --git a/mcs/class/System/System.ComponentModel/INestedContainer.cs b/mcs/class/System/System.ComponentModel/INestedContainer.cs
new file mode 100644 (file)
index 0000000..0f9d648
--- /dev/null
@@ -0,0 +1,43 @@
+//
+// System.ComponentModel.INestedContainer.cs
+//
+// Authors:
+//   Raja R Harinath <rharinath@novell.com>
+//
+// (C) 2007 Novell, Inc.
+//
+
+//
+// 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;
+
+namespace System.ComponentModel
+{
+       public interface INestedContainer : IContainer, IDisposable
+       {
+               IComponent Owner { get; }
+       }
+}
+
+#endif
diff --git a/mcs/class/System/System.ComponentModel/INestedSite.cs b/mcs/class/System/System.ComponentModel/INestedSite.cs
new file mode 100644 (file)
index 0000000..189fae0
--- /dev/null
@@ -0,0 +1,43 @@
+//
+// System.ComponentModel.INestedSite.cs
+//
+// Authors:
+//   Raja R Harinath <rharinath@novell.com>
+//
+// (C) 2007 Novell, Inc.
+//
+
+//
+// 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;
+
+namespace System.ComponentModel
+{
+       public interface INestedSite : ISite, IServiceProvider
+       {
+               string FullName { get; }
+       }
+}
+
+#endif
index 76f245acb25358af58cba1470c420221399dc8c7..56fdc7d469804a056e5c82f105c6d211c22ec1b2 100644 (file)
@@ -34,7 +34,7 @@ namespace System.ComponentModel
        /// <summary>
        /// Specifies that this object supports a simple, transacted notification for batch initialization.
        /// </summary>
-       public interface ISupportInitializeNotification
+       public interface ISupportInitializeNotification : ISupportInitialize
        {
                bool IsInitialized { get; }