Last change
on this file since 17282 was
16996,
checked in by gkronber, 6 years ago
|
#2520 Update plugin dependencies and references for HL.MetaOptimization for new persistence
|
File size:
731 bytes
|
Rev | Line | |
---|
[16996] | 1 | using System.Windows.Forms;
|
---|
[5303] | 2 | using HeuristicLab.MainForm;
|
---|
| 3 | using HeuristicLab.Data;
|
---|
| 4 | using HeuristicLab.Optimization;
|
---|
| 5 | using HeuristicLab.Core;
|
---|
| 6 |
|
---|
| 7 | namespace HeuristicLab.Problems.MetaOptimization.Views {
|
---|
| 8 | [View("RunCollectionDictionaryView")]
|
---|
| 9 | [Content(typeof(ItemDictionary<StringValue, RunCollection>), IsDefaultView = false)]
|
---|
| 10 | public sealed partial class RunCollectionDictionaryView : ItemDictionaryView<StringValue, RunCollection> {
|
---|
| 11 | public new ItemDictionary<StringValue, RunCollection> Content {
|
---|
| 12 | get { return (ItemDictionary<StringValue, RunCollection>)base.Content; }
|
---|
| 13 | set { base.Content = value; }
|
---|
| 14 | }
|
---|
| 15 |
|
---|
| 16 | public RunCollectionDictionaryView() {
|
---|
| 17 | InitializeComponent();
|
---|
| 18 | }
|
---|
| 19 | }
|
---|
| 20 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.