2010-05-19 Jb Evain <jbevain@novell.com>
[mcs.git] / mcs / doc-bootstrap.cs
blobf81f7e86aafbce6f6ff052cc3ae5cb7785a7a278
1 //
2 // doc-bootstrap.cs: Stub support for XML documentation.
3 //
4 // Author:
5 // Raja R Harinath <rharinath@novell.com>
6 //
7 // Dual licensed under the terms of the MIT X11 or GNU GPL
8 //
9 // Copyright 2004 Novell, Inc.
13 #if BOOTSTRAP_WITH_OLDLIB || NET_2_1
15 using XmlElement = System.Object;
17 namespace Mono.CSharp {
18 public class DocUtil
20 internal static void GenerateTypeDocComment (TypeContainer t, DeclSpace ds, Report r)
24 internal static void GenerateDocComment (MemberCore mc, DeclSpace ds, Report r)
28 public static string GetMethodDocCommentName (MemberCore mc, ParametersCompiled p, DeclSpace ds)
30 return "";
33 internal static void OnMethodGenerateDocComment (MethodCore mc, XmlElement el, Report r)
37 public static void GenerateEnumDocComment (Enum e, DeclSpace ds)
42 public class Documentation
44 public Documentation (string xml_output_filename)
48 public bool OutputDocComment (string asmfilename, Report r)
50 return true;
53 public void GenerateDocComment ()
59 #endif