// GtkSharp.Generation.ClassGen.cs - The Class Generatable. // // Author: Mike Kestner // // (c) 2001-2003 Mike Kestner namespace GtkSharp.Generation { using System; using System.Collections; using System.IO; using System.Text; using System.Xml; public class ClassGen : ClassBase, IGeneratable { private ArrayList strings = new ArrayList(); private static Hashtable namespaces = new Hashtable (); public ClassGen (XmlElement ns, XmlElement elem) : base (ns, elem) {} public void Generate () { GenerationInfo gen_info = new GenerationInfo (NSElem); Generate (gen_info); } public void Generate (GenerationInfo gen_info) { StreamWriter sw = gen_info.Writer = gen_info.OpenStream(Name); sw.WriteLine ("namespace " + NS + " {"); sw.WriteLine (); sw.WriteLine ("\tusing System;"); sw.WriteLine ("\tusing System.Runtime.InteropServices;"); sw.WriteLine (); sw.WriteLine ("#region Autogenerated code"); sw.Write ("\tpublic class " + Name); sw.WriteLine (" {"); sw.WriteLine (); GenProperties (gen_info); GenMethods (gen_info, null, null); sw.WriteLine ("#endregion"); AppendCustom(sw, gen_info.CustomDir); sw.WriteLine ("\t}"); sw.WriteLine ("}"); sw.Close (); gen_info.Writer = null; } } }