Last change
on this file since 10827 was
6489,
checked in by cneumuel, 13 years ago
|
#1215
- fixed issue with multiple problems (by introducing valuesReadOnly to IOptimizable)
- fixed error message when removing last problem instance
- made quality measure name configurable
|
File size:
915 bytes
|
Line | |
---|
1 | using HeuristicLab.Common;
|
---|
2 | using HeuristicLab.Core;
|
---|
3 |
|
---|
4 | namespace HeuristicLab.Problems.MetaOptimization.Views {
|
---|
5 | /// <summary>
|
---|
6 | /// used to display messages in a viewhost
|
---|
7 | /// </summary>
|
---|
8 | public class MessageItem : NamedItem {
|
---|
9 | public override bool CanChangeDescription { get { return !initialized; } }
|
---|
10 | public override bool CanChangeName { get { return !initialized; } }
|
---|
11 | private bool initialized = false;
|
---|
12 |
|
---|
13 | public MessageItem() {
|
---|
14 | this.Name = "MessageItem";
|
---|
15 | }
|
---|
16 | public MessageItem(string message)
|
---|
17 | : this() {
|
---|
18 | this.Name = message;
|
---|
19 | this.Description = "This item represents a message to the user.";
|
---|
20 | this.initialized = true;
|
---|
21 | }
|
---|
22 | protected MessageItem(MessageItem original, Cloner cloner)
|
---|
23 | : base(original, cloner) {
|
---|
24 | }
|
---|
25 |
|
---|
26 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
27 | return new MessageItem();
|
---|
28 | }
|
---|
29 | }
|
---|
30 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.