2005-03-08 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / class / System.XML / Mono.Xml.Xsl / Emitter.cs
1 //
2 // Emitter.cs
3 //
4 // Authors:
5 //      Oleg Tkachenko (oleg@tkachenko.com)
6 //      Atsushi Enomoto (atsushi@ximian.com)
7 // (C) 2003 Oleg Tkachenko
8 // (C) 2004 Novell inc.
9 //
10
11 //
12 // Permission is hereby granted, free of charge, to any person obtaining
13 // a copy of this software and associated documentation files (the
14 // "Software"), to deal in the Software without restriction, including
15 // without limitation the rights to use, copy, modify, merge, publish,
16 // distribute, sublicense, and/or sell copies of the Software, and to
17 // permit persons to whom the Software is furnished to do so, subject to
18 // the following conditions:
19 // 
20 // The above copyright notice and this permission notice shall be
21 // included in all copies or substantial portions of the Software.
22 // 
23 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
27 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
28 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
29 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
30 //
31
32 using System;
33 using System.Text;
34
35 namespace Mono.Xml.Xsl {
36         /// <summary>
37         /// Abstract emitter. Implementations of this class deals with outputting
38         /// result tree to specific output format, such as XML, HTML, Text. 
39         /// Implementations for additional formats (e.g. XHTML) as well as custom 
40         /// implementations may be supported either.
41         /// </summary>
42         internal abstract class Emitter {
43                 public abstract void WriteStartDocument (Encoding encoding, StandaloneType standalone);         
44                 public abstract void WriteEndDocument ();                                               
45                 public abstract void WriteDocType (string type, string publicId, string systemId);
46                 public abstract void WriteStartElement (string prefix, string localName, string nsURI);
47                 public abstract void WriteEndElement ();
48                 public virtual void WriteFullEndElement ()
49                 {
50                         WriteEndElement ();
51                 }
52
53                 public abstract void WriteAttributeString (string prefix, string localName, string nsURI, string value);                                        
54                 public abstract void WriteComment (string text);                
55                 public abstract void WriteProcessingInstruction (string name, string text);             
56                 public abstract void WriteString (string text);
57                 public abstract void WriteCDataSection (string text);
58                 public abstract void WriteRaw (string data);
59                 public abstract void Done ();
60
61                 public virtual void WriteWhitespace (string text)
62                 {
63                         WriteString (text);
64                 }
65         }
66 }