Merge pull request #1709 from atsushieno/import-codedom-core
[mono.git] / mcs / class / System / System.CodeDom / CodeCompileUnit.cs
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 //
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.Runtime.InteropServices;
33 using System.Collections.Specialized;
34
35 namespace System.CodeDom
36 {
37         [Serializable]
38         [ClassInterface(ClassInterfaceType.AutoDispatch)]
39         [ComVisible(true)]
40         public class CodeCompileUnit
41                 : CodeObject
42         {
43                 private CodeAttributeDeclarationCollection attributes;
44                 private CodeNamespaceCollection namespaces;
45                 private StringCollection assemblies;
46
47                 //
48                 // Constructors
49                 //
50                 public CodeCompileUnit()
51                 {
52                 }
53
54                 //
55                 // Properties
56                 //
57                 public CodeAttributeDeclarationCollection AssemblyCustomAttributes {
58                         get {
59                                 if ( attributes == null )
60                                         attributes = 
61                                                 new CodeAttributeDeclarationCollection();
62                                 return attributes;
63                         }
64                 }
65
66                 public CodeNamespaceCollection Namespaces {
67                         get {
68                                 if ( namespaces == null )
69                                         namespaces = new CodeNamespaceCollection();
70                                 return namespaces;
71                         }
72                 }
73
74                 public StringCollection ReferencedAssemblies {
75                         get {
76                                 if ( assemblies == null )
77                                         assemblies = new StringCollection();
78                                 return assemblies;
79                         }
80                 }
81
82                 CodeDirectiveCollection startDirectives;
83                 CodeDirectiveCollection endDirectives;
84
85                 public CodeDirectiveCollection StartDirectives {
86                         get {
87                                 if (startDirectives == null)
88                                         startDirectives = new CodeDirectiveCollection ();
89                                 return startDirectives;
90                         }
91                 }
92
93                 public CodeDirectiveCollection EndDirectives {
94                         get {
95                                 if (endDirectives == null)
96                                         endDirectives = new CodeDirectiveCollection ();
97                                 return endDirectives;
98                         }
99                 }
100         }
101 }