Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/09/11 14:48:19 (13 years ago)
Author:
abeham
Message:

#1465

  • Changed HistogramHistory to derive from CheckedItemList<T> instead of ItemCollection<T>
  • Changed AggregatedHistogramHistoryView to aggregate only checked entries
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/histogram/HeuristicLab.Analysis/3.3/DataVisualization/HistogramHistory.cs

    r5961 r5995  
    3232  [Item("HistogramHistory", "Represents history values of histograms.")]
    3333  [StorableClass]
    34   public class HistogramHistory : ItemCollection<Histogram> {
     34  public class HistogramHistory : CheckedItemList<Histogram> {
    3535    public override Image ItemImage {
    3636      get { return HeuristicLab.Common.Resources.VSImageLibrary.Cab; }
     
    4141    protected HistogramHistory(HistogramHistory original, Cloner cloner) : base(original, cloner) { }
    4242    public HistogramHistory() : base() { }
    43     public HistogramHistory(IEnumerable<Histogram> collection) : base(new ItemCollection<Histogram>(collection)) { }
     43    public HistogramHistory(IEnumerable<Histogram> collection) : base(collection) { }
    4444
    4545    public override IDeepCloneable Clone(Cloner cloner) {
Note: See TracChangeset for help on using the changeset viewer.