Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/23/08 00:28:11 (16 years ago)
Author:
gkronber
Message:
  • implemented operator to store a whole scope as an result item into the cedma-db.
  • worked on AgentListView to display results as sub-nodes of agents.

(ticket #191)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.CEDMA.Core/Agent.cs

    r393 r394  
    8383        foreach(ResultEntry entry in Database.GetResults(Id)) {
    8484          Result result = (Result)DbPersistenceManager.Restore(entry.RawData);
     85          result.Database = Database;
     86          result.Id = entry.Id;
     87          result.Summary = entry.Summary;
     88          result.Description = entry.Description;
     89          results.Add(result);
    8590        }
    8691        return results;
Note: See TracChangeset for help on using the changeset viewer.