Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/11/16 16:40:23 (8 years ago)
Author:
abeham
Message:

#2588: Created view for okb solution

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Clients.OKB/3.3/RunCreation/SingleObjectiveOKBSolution.cs

    r13691 r13693  
    7575    }
    7676
     77    public override void DownloadData() {
     78      using (var stream = new MemoryStream(RunCreationClient.Instance.GetSolutionData(SolutionId))) {
     79        Solution = XmlParser.Deserialize<IItem>(stream);
     80      }
     81    }
     82
    7783    public override void Upload() {
    7884      if (SolutionId != -1) throw new InvalidOperationException("Solution exists already.");
Note: See TracChangeset for help on using the changeset viewer.