(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / class / System.XML / System.Xml / XmlTextWriterOpenElement.cs
blobe27bcbd70ec5000e2da18b00aa0965046b72d9ec
1 //
2 // System.Xml.XmlTextWriterOpenElement
3 //
4 // Author:
5 // Kral Ferch <kral_ferch@hotmail.com>
6 //
7 // (C) 2002 Kral Ferch
8 //
9 //
10 // Scope support for XmlLang and XmlSpace in XmlTextWriter.
14 // Permission is hereby granted, free of charge, to any person obtaining
15 // a copy of this software and associated documentation files (the
16 // "Software"), to deal in the Software without restriction, including
17 // without limitation the rights to use, copy, modify, merge, publish,
18 // distribute, sublicense, and/or sell copies of the Software, and to
19 // permit persons to whom the Software is furnished to do so, subject to
20 // the following conditions:
21 //
22 // The above copyright notice and this permission notice shall be
23 // included in all copies or substantial portions of the Software.
24 //
25 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
26 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
27 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
28 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
29 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
30 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
31 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
33 using System;
35 namespace System.Xml
37 internal class XmlTextWriterOpenElement
39 #region Fields
41 string prefix;
42 string localName;
43 string xmlLang;
44 XmlSpace xmlSpace;
45 bool indentingOverriden = false;
47 #endregion
49 #region Constructors
51 public XmlTextWriterOpenElement (string prefix, string localName)
53 Reset (prefix, localName);
56 #endregion
58 public void Reset (string prefix, string localName)
60 this.prefix = prefix;
61 this.localName = localName;
62 this.indentingOverriden = false;
63 this.xmlLang = null;
64 this.XmlSpace = XmlSpace.None;
67 #region Properties
69 public string LocalName {
70 get { return localName; }
73 public string Prefix {
74 get { return prefix; }
77 public bool IndentingOverriden {
78 get { return indentingOverriden; }
79 set { indentingOverriden = value; }
82 public string XmlLang {
83 get { return xmlLang; }
84 set { xmlLang = value; }
87 public XmlSpace XmlSpace {
88 get { return xmlSpace; }
89 set { xmlSpace = value; }
92 #endregion