Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive/3.4/TreeView/IItemTree.cs @ 6384

Last change on this file since 6384 was 6384, checked in by cneumuel, 13 years ago

#1233

  • added missing files
File size: 378 bytes
Line 
1using System.Collections.Generic;
2using HeuristicLab.Collections;
3using HeuristicLab.Core;
4
5namespace HeuristicLab.Clients.Hive {
6  public interface IItemTree<T> : INamedItem, INotifyObservableCollectionItemsChanged<IItemTree<T>> where T : IItemTree<T> {
7    IEnumerable<IItemTree<T>> GetChildItems();
8    ICollection<IItemTreeNodeAction<T>> Actions { get; }
9  }
10}
Note: See TracBrowser for help on using the repository browser.