source:
branches/HeuristicLab.MetaOptimization/HeuristicLab.Problems.MetaOptimization.Views/3.3/RunCollectionDictionaryView.cs
@
14501
Last change on this file since 14501 was 5303, checked in by cneumuel, 14 years ago | |
---|---|
File size: 894 bytes |
Line | |
---|---|
1 | using System; |
2 | using System.Collections.Generic; |
3 | using System.ComponentModel; |
4 | using System.Drawing; |
5 | using System.Data; |
6 | using System.Linq; |
7 | using System.Text; |
8 | using System.Windows.Forms; |
9 | using HeuristicLab.MainForm; |
10 | using HeuristicLab.Data; |
11 | using HeuristicLab.Optimization; |
12 | using HeuristicLab.Core; |
13 | |
14 | namespace HeuristicLab.Problems.MetaOptimization.Views { |
15 | [View("RunCollectionDictionaryView")] |
16 | [Content(typeof(ItemDictionary<StringValue, RunCollection>), IsDefaultView = false)] |
17 | public sealed partial class RunCollectionDictionaryView : ItemDictionaryView<StringValue, RunCollection> { |
18 | public new ItemDictionary<StringValue, RunCollection> Content { |
19 | get { return (ItemDictionary<StringValue, RunCollection>)base.Content; } |
20 | set { base.Content = value; } |
21 | } |
22 | |
23 | public RunCollectionDictionaryView() { |
24 | InitializeComponent(); |
25 | } |
26 | } |
27 | } |
Note: See TracBrowser
for help on using the repository browser.