Example #1
0
 public OAFolderItem(OAProject project, FolderNode node)
     : base(project, node)
 {
 }
Example #2
0
 public OAProjectItem(OAProject project, T node)
 {
     this.node    = node;
     this.project = project;
 }
Example #3
0
 public OAProjectItems(OAProject project, HierarchyNode nodeWithItems)
     : base(project, nodeWithItems)
 {
 }
 /// <summary>
 /// Constructor.
 /// </summary>
 /// <param name="project">The associated project.</param>
 /// <param name="items">A list of items that will make up the items defined by this object.</param>
 /// <param name="nodeWithItems">The node that defines the items.</param>
 public OANavigableProjectItems(OAProject project, IList <EnvDTE.ProjectItem> items, HierarchyNode nodeWithItems)
 {
     this.items         = items;
     this.project       = project;
     this.nodeWithItems = nodeWithItems;
 }
 /// <summary>
 /// Constructor.
 /// </summary>
 /// <param name="project">The associated project.</param>
 /// <param name="nodeWithItems">The node that defines the items.</param>
 public OANavigableProjectItems(OAProject project, HierarchyNode nodeWithItems)
 {
     this.project       = project;
     this.nodeWithItems = nodeWithItems;
     this.items         = this.GetListOfProjectItems();
 }
Example #6
0
 public OAFileItem(OAProject project, FileNode node)
     : base(project, node)
 {
 }