Ryujinx-GtkSharp/generator/ClassGen.cs

58 lines
1.3 KiB
C#
Raw Normal View History

2003-10-05 02:20:17 +02:00
// GtkSharp.Generation.ClassGen.cs - The Class Generatable.
//
// Author: Mike Kestner <mkestner@speakeasy.net>
//
// (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 ()
{
2003-10-05 02:20:17 +02:00
GenerationInfo gen_info = new GenerationInfo (NSElem);
Generate (gen_info);
}
public void Generate (GenerationInfo gen_info)
{
StreamWriter sw = gen_info.Writer = gen_info.OpenStream(Name);
2003-10-05 02:20:17 +02:00
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 ();
2003-10-05 02:20:17 +02:00
GenProperties (gen_info);
GenMethods (gen_info, null, null);
sw.WriteLine ("#endregion");
2003-10-05 02:20:17 +02:00
AppendCustom(sw, gen_info.CustomDir);
sw.WriteLine ("\t}");
2003-10-05 02:20:17 +02:00
sw.WriteLine ("}");
2003-10-05 02:20:17 +02:00
sw.Close ();
gen_info.Writer = null;
}
}
}