New test.
[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 assemblyCustomAttributes;
44                 private CodeNamespaceCollection namespaces;
45                 private StringCollection referencedAssemblies;
46
47                 //
48                 // Constructors
49                 //
50                 public CodeCompileUnit()
51                 {
52                 }
53
54                 //
55                 // Properties
56                 //
57                 public CodeAttributeDeclarationCollection AssemblyCustomAttributes {
58                         get {
59                                 if ( assemblyCustomAttributes == null )
60                                         assemblyCustomAttributes = 
61                                                 new CodeAttributeDeclarationCollection();
62                                 return assemblyCustomAttributes;
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 ( referencedAssemblies == null )
77                                         referencedAssemblies = new StringCollection();
78                                 return referencedAssemblies;
79                         }
80                 }
81
82 #if NET_2_0
83
84                 CodeDirectiveCollection startDirectives;
85                 CodeDirectiveCollection endDirectives;
86
87                 public CodeDirectiveCollection StartDirectives {
88                         get {
89                                 if (startDirectives == null)
90                                         startDirectives = new CodeDirectiveCollection ();
91                                 return startDirectives;
92                         }
93                 }
94
95                 public CodeDirectiveCollection EndDirectives {
96                         get {
97                                 if (endDirectives == null)
98                                         endDirectives = new CodeDirectiveCollection ();
99                                 return endDirectives;
100                         }
101                 }
102
103 #endif
104
105         }
106 }