TARGET_J2EE compilation & integration fixes.
authorEyal Alalouf <eyala@mainsoft.com>
Tue, 19 Jul 2005 16:53:47 +0000 (16:53 -0000)
committerEyal Alalouf <eyala@mainsoft.com>
Tue, 19 Jul 2005 16:53:47 +0000 (16:53 -0000)
svn path=/trunk/mcs/; revision=47418

mcs/class/System.Web/System.Web.UI.WebControls/ChangeLog
mcs/class/System.Web/System.Web.UI.WebControls/XmlBuilder.jvm.cs [new file with mode: 0644]

index 031d2e67e6ab1a310e8adac94b3713661925a35c..67252f50c54b31d5b5ba12c15137f9ed2c8f3a7c 100644 (file)
@@ -1,3 +1,6 @@
+2005-07-19  Eyal Alaluf <eyala@mainsoft.com>
+       * Added XmlBuilder.jvm.cs for the TARGET_J2EE configuration.
+
 2005-06-27  Lluis Sanchez Gual <lluis@novell.com>
 
        * DataControlField.cs: Ignore the ShowHeader property when
diff --git a/mcs/class/System.Web/System.Web.UI.WebControls/XmlBuilder.jvm.cs b/mcs/class/System.Web/System.Web.UI.WebControls/XmlBuilder.jvm.cs
new file mode 100644 (file)
index 0000000..ddc87fe
--- /dev/null
@@ -0,0 +1,44 @@
+//
+// System.Web.UI.WebControls.XmlBuilder.cs
+//
+// Author:
+//     Andreas Nahr (ClassDevelopment@A-SoftTech.com)
+//     Gonzalo Paniagua Javier (gonzalo@novell.com)
+//
+// Copyright (c) 2004 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.
+//
+
+using System;
+using System.Collections;
+using System.Web.Compilation;
+using System.Web.UI;
+using System.Xml;
+
+namespace System.Web.UI.WebControls
+{
+       class XmlBuilder : ControlBuilder
+       {
+       }
+}
+