Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive/3.4/ExperimentManager/IItemTree.cs @ 5675

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

#1233

  • improved treeview for hive jobs
File size: 288 bytes
Line 
1using System.Collections.Generic;
2using HeuristicLab.Collections;
3using HeuristicLab.Core;
4
5namespace HeuristicLab.Clients.Hive {
6  public interface IItemTree : INamedItem, INotifyObservableCollectionItemsChanged<IItemTree> {
7    IEnumerable<IItemTree> GetChildItems();
8  }
9}
Note: See TracBrowser for help on using the repository browser.