Changeset 12734
- Timestamp:
- 07/11/15 19:32:32 (9 years ago)
- Location:
- stable
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
- Property svn:mergeinfo changed
/trunk/sources merged: 12618
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Core.Views/3.3/CheckedItemCollectionView.cs
r12009 r12734 32 32 [Content(typeof(ICheckedItemCollection<>), true)] 33 33 [Content(typeof(CheckedItemCollection<>), true)] 34 [Content(typeof(ReadOnlyCheckedItemCollection<>), true)] 34 35 public partial class CheckedItemCollectionView<T> : ItemCollectionView<T> where T : class, IItem { 35 36 public new ICheckedItemCollection<T> Content { -
stable/HeuristicLab.Core.Views/3.3/CheckedItemListView.cs
r12009 r12734 35 35 [Content(typeof(CheckedItemList<>), true)] 36 36 [Content(typeof(ICheckedItemList<>), true)] 37 [Content(typeof(ReadOnlyCheckedItemList<>), true)] 37 38 public partial class CheckedItemListView<T> : ItemListView<T> where T : class, IItem { 38 39 public new ICheckedItemList<T> Content { -
stable/HeuristicLab.Core.Views/3.3/ItemArrayView.cs
r12127 r12734 28 28 using HeuristicLab.Collections; 29 29 using HeuristicLab.MainForm; 30 using HeuristicLab.MainForm.WindowsForms;31 30 using HeuristicLab.PluginInfrastructure; 32 31 … … 35 34 [Content(typeof(ItemArray<>), true)] 36 35 [Content(typeof(IItemArray<>), false)] 36 [Content(typeof(ReadOnlyItemArray<>), true)] 37 37 public partial class ItemArrayView<T> : ItemView where T : class, IItem { 38 38 protected Dictionary<T, List<ListViewItem>> itemListViewItemMapping; -
stable/HeuristicLab.Core.Views/3.3/ItemCollectionView.cs
r12127 r12734 29 29 using HeuristicLab.Common; 30 30 using HeuristicLab.MainForm; 31 using HeuristicLab.MainForm.WindowsForms;32 31 using HeuristicLab.PluginInfrastructure; 33 32 … … 36 35 [Content(typeof(ItemCollection<>), true)] 37 36 [Content(typeof(IItemCollection<>), false)] 37 [Content(typeof(ReadOnlyItemCollection<>), true)] 38 38 public partial class ItemCollectionView<T> : ItemView where T : class, IItem { 39 39 protected Dictionary<T, List<ListViewItem>> itemListViewItemMapping; -
stable/HeuristicLab.Core.Views/3.3/ItemListView.cs
r12127 r12734 30 30 using HeuristicLab.Common; 31 31 using HeuristicLab.MainForm; 32 using HeuristicLab.MainForm.WindowsForms;33 32 using HeuristicLab.PluginInfrastructure; 34 33 … … 37 36 [Content(typeof(ItemList<>), true)] 38 37 [Content(typeof(IItemList<>), false)] 38 [Content(typeof(ReadOnlyItemList<>), true)] 39 39 public partial class ItemListView<T> : ItemView where T : class, IItem { 40 40 protected Dictionary<T, List<ListViewItem>> itemListViewItemMapping; -
stable/HeuristicLab.Core.Views/3.3/ItemSetView.cs
r12009 r12734 28 28 [Content(typeof(ItemSet<>), true)] 29 29 [Content(typeof(IItemSet<>), false)] 30 [Content(typeof(ReadOnlyItemSet<>), true)] 30 31 public partial class ItemSetView<T> : ItemCollectionView<T> where T : class, IItem { 31 32 protected bool draggedItemsAlreadyContained;
Note: See TracChangeset
for help on using the changeset viewer.