2003-01-26 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
[mono.git] / mcs / class / System.XML / System.Xml / XmlSpace.cs
index 18f753ce58417d2841d83230ee0f77c6a5ace55d..f1e1128ff3c1c9259838e6cf93741ec1ebaffe36 100644 (file)
@@ -1,19 +1,37 @@
-// -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-\r
-//\r
-// System.Xml.XmlSpace.cs\r
-//\r
-// Author:\r
-//   Jason Diamond (jason@injektilo.org)\r
-//\r
-// (C) 2001 Jason Diamond  http://injektilo.org/\r
-//\r
-\r
-namespace System.Xml\r
-{\r
-       public enum XmlSpace\r
-       {\r
-               Default,\r
-               None,\r
-               Preserve\r
-       }\r
-}\r
+// XmlSpace.cs
+//
+// This code was automatically generated from
+// ECMA CLI XML Library Specification.
+// Generator: libgen.xsl [1.0; (C) Sergey Chaban (serge@wildwestsoftware.com)]
+// Created: Wed, 5 Sep 2001 06:31:52 UTC
+// Source file: AllTypes.xml
+// URL: http://msdn.microsoft.com/net/ecma/AllTypes.xml
+//
+// (C) 2001 Ximian, Inc.  http://www.ximian.com
+
+
+namespace System.Xml {
+
+
+       /// <summary>
+       /// Specifies the current xml:space scope
+       /// </summary>
+       public enum XmlSpace {
+
+               /// <summary>
+               /// No xml:space scope.
+               /// </summary>
+               None = 0,
+
+               /// <summary>
+               /// the xml:space scope = "default"
+               /// </summary>
+               Default = 1,
+
+               /// <summary>
+               /// the xml:space scope = "preserve"
+               /// </summary>
+               Preserve = 2,
+       } // XmlSpace
+
+} // System.Xml