OLD | NEW |
| (Empty) |
1 /// Copyright (c) Microsoft Corporation. All rights reserved. | |
2 | |
3 using System; | |
4 using System.Diagnostics.CodeAnalysis; | |
5 using System.Runtime.InteropServices; | |
6 using EnvDTE; | |
7 | |
8 namespace Microsoft.VisualStudio.Project.Automation | |
9 { | |
10 /// <summary> | |
11 /// Represents an automation object for a folder in a project | |
12 /// </summary> | |
13 [SuppressMessage("Microsoft.Interoperability", "CA1405:ComVisibleTypeBas
eTypesShouldBeComVisible")] | |
14 [ComVisible(true), CLSCompliant(false)] | |
15 public class OAFolderItem : OAProjectItem<FolderNode> | |
16 { | |
17 #region ctors | |
18 public OAFolderItem(OAProject project, FolderNode node) | |
19 : base(project, node) | |
20 { | |
21 } | |
22 | |
23 #endregion | |
24 | |
25 #region overridden methods | |
26 public override ProjectItems Collection | |
27 { | |
28 get | |
29 { | |
30 ProjectItems items = new OAProjectItems(this.Pro
ject, this.Node); | |
31 return items; | |
32 } | |
33 } | |
34 | |
35 public override ProjectItems ProjectItems | |
36 { | |
37 get | |
38 { | |
39 return this.Collection; | |
40 } | |
41 } | |
42 #endregion | |
43 } | |
44 } | |
OLD | NEW |