Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/27/20 15:53:26 (4 years ago)
Author:
dpiringe
Message:

#3026:

  • added error output for failed runner initialization
  • reorganised some final view models
  • TargetedJsonItemType (in JsonItemVMBase) now automatically returns the type of the defined JsonItem
  • code cleanup
  • refactored RegressionProblemDataConverter
  • added lots of comments
  • added new view for StringArrayJsonItem
  • added new UI component for concrete restricted items and used it in JsonItemConcreteItemArrayControl and JsonItemValidValuesControl
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface/Interfaces/IMatrixJsonItem.cs

    r17473 r17519  
    1 using System;
    2 using System.Collections.Generic;
    3 using System.Linq;
    4 using System.Text;
    5 using System.Threading.Tasks;
     1using System.Collections.Generic;
    62
    73namespace HeuristicLab.JsonInterface {
    84  public interface IMatrixJsonItem : IValueJsonItem {
     5    /// <summary>
     6    /// Flag to define resizable rows.
     7    /// </summary>
    98    bool RowsResizable { get; set; }
     9    /// <summary>
     10    /// Flag to define resizable columns.
     11    /// </summary>
    1012    bool ColumnsResizable { get; set; }
     13    /// <summary>
     14    /// IEnumerable of row names.
     15    /// </summary>
    1116    IEnumerable<string> RowNames { get; set; }
     17    /// <summary>
     18    /// IEnumerable of column names.
     19    /// </summary>
    1220    IEnumerable<string> ColumnNames { get; set; }
    1321  }
Note: See TracChangeset for help on using the changeset viewer.