2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / class / System.XML / System.Xml / XmlTextWriterOpenElement.cs
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.
11 //
12
13 //
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.
32 //
33 using System;
34
35 namespace System.Xml
36 {
37         internal class XmlTextWriterOpenElement
38         {
39                 #region Fields
40
41                 string prefix;
42                 string localName;
43                 string xmlLang;
44                 XmlSpace xmlSpace;
45                 bool indentingOverriden = false;
46
47                 #endregion
48
49                 #region Constructors
50
51                 public XmlTextWriterOpenElement (string prefix, string localName)
52                 {
53                         Reset (prefix, localName);
54                 }
55
56                 #endregion
57
58                 public void Reset (string prefix, string localName)
59                 {
60                         this.prefix = prefix;
61                         this.localName = localName;
62                         this.indentingOverriden = false;
63                         this.xmlLang = null;
64                         this.XmlSpace = XmlSpace.None;
65                 }
66
67                 #region Properties
68
69                 public string LocalName {
70                         get { return localName; }
71                 }
72
73                 public string Prefix {
74                         get { return prefix; }
75                 }
76
77                 public bool IndentingOverriden {
78                         get { return indentingOverriden; }
79                         set { indentingOverriden = value; }
80                 }
81
82                 public string XmlLang {
83                         get { return xmlLang; }
84                         set { xmlLang = value; }
85                 }
86
87                 public XmlSpace XmlSpace {
88                         get { return xmlSpace; }
89                         set { xmlSpace = value; }
90                 }
91
92                 #endregion
93         }
94 }