Last change
on this file since 2482 was
187,
checked in by mkofler, 17 years ago
|
Added ItemDictionary and related classes (View, KeyValueEventArgs, EditKeyValueDialog) to the Core and Data projects as per Andreas' request.
|
File size:
452 bytes
|
Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Text;
|
---|
4 |
|
---|
5 | namespace HeuristicLab.Core {
|
---|
6 | public class KeyValueEventArgs : EventArgs {
|
---|
7 |
|
---|
8 | private IItem key;
|
---|
9 | public IItem Key {
|
---|
10 | get { return key; }
|
---|
11 | }
|
---|
12 |
|
---|
13 | private IItem value;
|
---|
14 | public IItem Value {
|
---|
15 | get { return value; }
|
---|
16 | }
|
---|
17 |
|
---|
18 | public KeyValueEventArgs(IItem key, IItem value) {
|
---|
19 | this.key = key;
|
---|
20 | this.value = value;
|
---|
21 | }
|
---|
22 | }
|
---|
23 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.