(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / class / System / System.CodeDom / CodeCompileUnit.cs
blob680ccc0c6d4b16f1ecc80e71e93c9b6f52bd63d3
1 //
2 // System.CodeDom CodeCompileUnit Class implementation
3 //
4 // Author:
5 // Daniel Stodden (stodden@in.tum.de)
6 // Marek Safar (marek.safar@seznam.cz)
7 //
8 // (C) 2002 Ximian, Inc.
9 //
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.
32 using System.Runtime.InteropServices;
33 using System.Collections.Specialized;
35 namespace System.CodeDom
37 [Serializable]
38 [ClassInterface(ClassInterfaceType.AutoDispatch)]
39 [ComVisible(true)]
40 public class CodeCompileUnit
41 : CodeObject
43 private CodeAttributeDeclarationCollection assemblyCustomAttributes;
44 private CodeNamespaceCollection namespaces;
45 private StringCollection referencedAssemblies;
48 // Constructors
50 public CodeCompileUnit()
55 // Properties
57 public CodeAttributeDeclarationCollection AssemblyCustomAttributes {
58 get {
59 if ( assemblyCustomAttributes == null )
60 assemblyCustomAttributes =
61 new CodeAttributeDeclarationCollection();
62 return assemblyCustomAttributes;
66 public CodeNamespaceCollection Namespaces {
67 get {
68 if ( namespaces == null )
69 namespaces = new CodeNamespaceCollection();
70 return namespaces;
74 public StringCollection ReferencedAssemblies {
75 get {
76 if ( referencedAssemblies == null )
77 referencedAssemblies = new StringCollection();
78 return referencedAssemblies;
82 #if NET_2_0
84 CodeDirectiveCollection startDirectives;
85 CodeDirectiveCollection endDirectives;
87 public CodeDirectiveCollection StartDirectives {
88 get {
89 if (startDirectives == null)
90 startDirectives = new CodeDirectiveCollection ();
91 return startDirectives;
95 public CodeDirectiveCollection EndDirectives {
96 get {
97 if (endDirectives == null)
98 endDirectives = new CodeDirectiveCollection ();
99 return endDirectives;
103 #endif