Last change
on this file since 13401 was
8576,
checked in by jkarder, 12 years ago
|
#1853: created branch for MetaOptimization (trunk integration)
|
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.