Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/31/08 19:46:44 (15 years ago)
Author:
gkronber
Message:

worked on CEDMA analysis frontend. #419 (Refactor CEDMA plugins)

File:
1 moved

Legend:

Unmodified
Added
Removed
  • branches/CEDMA-Refactoring-Ticket419/HeuristicLab.CEDMA.Core/ResultList.cs

    r1072 r1073  
    3131using System.IO;
    3232using HeuristicLab.PluginInfrastructure;
    33 using HeuristicLab.Logging;
    3433using HeuristicLab.Data;
    3534using HeuristicLab.DataAnalysis;
    36 using HeuristicLab.Charting.Data;
    3735using System.Drawing;
    38 using HeuristicLab.GP;
    3936
    40 namespace HeuristicLab.CEDMA.Charting {
    41 
    42   public class RecordAddedEventArgs : EventArgs {
    43     private Record record;
    44     public Record Record { get { return record; } }
    45     public RecordAddedEventArgs(Record r)
    46       : base() {
    47       this.record = r;
    48     }
    49   }
    50 
    51   public class ResultList : ItemBase {
     37namespace HeuristicLab.CEDMA.Core {
     38  public class ResultList : IViewable {
    5239    private Dictionary<Record, Dataset> datasets;
    5340
Note: See TracChangeset for help on using the changeset viewer.