Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/02/17 09:03:11 (7 years ago)
Author:
swagner
Message:

#2726: Fixed build fails because of C# 6.0 features which are not yet supported on the build server

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionViews/RunCollectionParameterAnalysisView.cs

    r14637 r14638  
    531531    #region Inner Types
    532532    class ParameterInfo {
    533       public string Name { get; }
    534       public Dictionary<string, ParameterValueInfo> Values { get; }
     533      public string Name { get; private set; }
     534      public Dictionary<string, ParameterValueInfo> Values { get; private set; }
    535535      public IEnumerable<IRun> Runs {
    536536        get { return Values.Values.SelectMany(x => x.Runs); }
     
    555555    }
    556556    class ParameterValueInfo {
    557       public string Value { get; }
     557      public string Value { get; private set; }
    558558      public Color Color { get; set; }
    559       public IList<IRun> Runs { get; }
     559      public IList<IRun> Runs { get; private set; }
    560560      public int RunCount {
    561561        get { return Runs.Count; }
     
    572572    }
    573573    class GroupInfo {
    574       public string Text { get; }
    575       public Color Color { get; }
    576       public IList<IRun> Runs { get; }
    577       public bool IsParameter { get; }
     574      public string Text { get; private set; }
     575      public Color Color { get; private set; }
     576      public IList<IRun> Runs { get; private set; }
     577      public bool IsParameter { get; private set; }
    578578      public GroupInfo(string text, Color color, IEnumerable<IRun> runs, bool isParamter) {
    579579        Text = text;
     
    590590    }
    591591    class SeriesInfo {
    592       public Color Color { get; }
    593       public SeriesTypes Type { get; }
     592      public Color Color { get; private set; }
     593      public SeriesTypes Type { get; private set; }
    594594      public SeriesInfo(Color color, SeriesTypes type) {
    595595        Color = color;
     
    598598    }
    599599    class LegendItemInfo {
    600       public Color Color { get; }
     600      public Color Color { get; private set; }
    601601      public bool SeriesVisible { get; set; }
    602       public IEnumerable<Series> Series { get; }
     602      public IEnumerable<Series> Series { get; private set; }
    603603      public LegendItemInfo(Color color, IEnumerable<Series> series) {
    604604        Color = color;
Note: See TracChangeset for help on using the changeset viewer.