Changeset 2790 for trunk/sources/HeuristicLab.Collections
- Timestamp:
- 02/13/10 04:37:49 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.Collections/3.3
- Files:
-
- 23 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Collections/3.3/CollectionItemsChangedEventArgs.cs
r2572 r2790 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-20 08Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 22 22 using System; 23 23 using System.Collections.Generic; 24 using System.Linq;25 using System.Text;26 using System.Collections.Specialized;27 24 28 25 namespace HeuristicLab.Collections { -
trunk/sources/HeuristicLab.Collections/3.3/CollectionItemsChangedEventHandler.cs
r2572 r2790 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-20 08Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.Linq;25 using System.Text;26 using System.Collections.Specialized;27 28 22 namespace HeuristicLab.Collections { 29 23 public delegate void CollectionItemsChangedEventHandler<T>(object sender, CollectionItemsChangedEventArgs<T> e); -
trunk/sources/HeuristicLab.Collections/3.3/HeuristicLabCollectionsPlugin.cs.frame
r2754 r2790 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-20 08Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.Text;25 22 using HeuristicLab.PluginInfrastructure; 26 23 -
trunk/sources/HeuristicLab.Collections/3.3/IObservableArray.cs
r2745 r2790 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-20 08Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 20 20 #endregion 21 21 22 using System;23 22 using System.Collections.Generic; 24 using System.Linq;25 using System.Text;26 23 using System.ComponentModel; 27 24 -
trunk/sources/HeuristicLab.Collections/3.3/IObservableCollection.cs
r2620 r2790 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-20 08Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 20 20 #endregion 21 21 22 using System;23 22 using System.Collections.Generic; 24 using System.Linq;25 using System.Text;26 23 using System.ComponentModel; 27 24 -
trunk/sources/HeuristicLab.Collections/3.3/IObservableDictionary.cs
r2623 r2790 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-20 08Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 20 20 #endregion 21 21 22 using System;23 22 using System.Collections.Generic; 24 using System.Linq;25 using System.Text;26 using System.ComponentModel;27 23 28 24 namespace HeuristicLab.Collections { -
trunk/sources/HeuristicLab.Collections/3.3/IObservableKeyedCollection.cs
r2623 r2790 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-20 08Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.Linq;25 using System.Text;26 using System.ComponentModel;27 28 22 namespace HeuristicLab.Collections { 29 23 public interface IObservableKeyedCollection<TKey, TItem> : IObservableCollection<TItem> { -
trunk/sources/HeuristicLab.Collections/3.3/IObservableList.cs
r2623 r2790 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-20 08Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 20 20 #endregion 21 21 22 using System;23 22 using System.Collections.Generic; 24 using System.Linq;25 using System.Text;26 using System.ComponentModel;27 23 28 24 namespace HeuristicLab.Collections { -
trunk/sources/HeuristicLab.Collections/3.3/IObservableSet.cs
r2623 r2790 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-20 08Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 20 20 #endregion 21 21 22 using System;23 22 using System.Collections.Generic; 24 using System.Linq;25 using System.Text;26 using System.ComponentModel;27 23 28 24 namespace HeuristicLab.Collections { -
trunk/sources/HeuristicLab.Collections/3.3/IndexedItem.cs
r2669 r2790 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-20 08Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 21 21 22 22 using System; 23 using System.Collections.Generic;24 using System.Linq;25 23 using System.Text; 26 24 … … 43 41 44 42 public override string ToString() { 45 StringBuilder sb = new StringBuilder(); 46 sb.Append("[").Append(index).Append(": "); 47 if (value != null) sb.Append(value.ToString()); 48 sb.Append("]"); 49 return sb.ToString(); 43 return "[" + index.ToString() + ": " + value == null ? "null" : value.ToString() + "]"; 50 44 } 51 45 } -
trunk/sources/HeuristicLab.Collections/3.3/ObservableArray.cs
r2745 r2790 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-20 08Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 23 23 using System.Collections; 24 24 using System.Collections.Generic; 25 using System.Collections.ObjectModel;26 25 using System.ComponentModel; 27 26 using System.Linq; 28 using System.Text;29 27 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 30 28 -
trunk/sources/HeuristicLab.Collections/3.3/ObservableCollection.cs
r2620 r2790 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-20 08Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 23 23 using System.Collections; 24 24 using System.Collections.Generic; 25 using System.Collections.ObjectModel;26 25 using System.ComponentModel; 27 using System.Linq;28 using System.Text;29 26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 30 27 -
trunk/sources/HeuristicLab.Collections/3.3/ObservableDictionary.cs
r2623 r2790 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-20 08Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 25 25 using System.ComponentModel; 26 26 using System.Linq; 27 using System.Text;28 27 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 29 28 -
trunk/sources/HeuristicLab.Collections/3.3/ObservableKeyedCollection.cs
r2664 r2790 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-20 08Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 23 23 using System.Collections; 24 24 using System.Collections.Generic; 25 using System.Collections.ObjectModel;26 25 using System.ComponentModel; 27 26 using System.Linq; 28 using System.Text;29 27 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 30 28 -
trunk/sources/HeuristicLab.Collections/3.3/ObservableList.cs
r2745 r2790 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-20 08Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 23 23 using System.Collections; 24 24 using System.Collections.Generic; 25 using System.Collections.ObjectModel;26 25 using System.ComponentModel; 27 using System.Linq;28 using System.Text;29 26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 30 27 -
trunk/sources/HeuristicLab.Collections/3.3/ObservableSet.cs
r2623 r2790 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-20 08Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 23 23 using System.Collections; 24 24 using System.Collections.Generic; 25 using System.Collections.ObjectModel;26 25 using System.ComponentModel; 27 26 using System.Linq; 28 using System.Text;29 27 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 30 28 -
trunk/sources/HeuristicLab.Collections/3.3/Properties/AssemblyInfo.frame
r2754 r2790 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-20 09Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
trunk/sources/HeuristicLab.Collections/3.3/ReadOnlyObservableArray.cs
r2745 r2790 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-20 08Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 23 23 using System.Collections; 24 24 using System.Collections.Generic; 25 using System.Collections.ObjectModel;26 25 using System.ComponentModel; 27 using System.Linq;28 using System.Text;29 26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 30 27 -
trunk/sources/HeuristicLab.Collections/3.3/ReadOnlyObservableCollection.cs
r2620 r2790 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-20 08Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 23 23 using System.Collections; 24 24 using System.Collections.Generic; 25 using System.Collections.ObjectModel;26 25 using System.ComponentModel; 27 using System.Linq;28 using System.Text;29 26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 30 27 -
trunk/sources/HeuristicLab.Collections/3.3/ReadOnlyObservableDictionary.cs
r2620 r2790 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-20 08Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 24 24 using System.Collections.Generic; 25 25 using System.ComponentModel; 26 using System.Linq;27 using System.Text;28 26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 29 27 -
trunk/sources/HeuristicLab.Collections/3.3/ReadOnlyObservableKeyedCollection.cs
r2623 r2790 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-20 08Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 23 23 using System.Collections; 24 24 using System.Collections.Generic; 25 using System.Collections.ObjectModel;26 25 using System.ComponentModel; 27 using System.Linq;28 using System.Text;29 26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 30 27 -
trunk/sources/HeuristicLab.Collections/3.3/ReadOnlyObservableList.cs
r2623 r2790 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-20 08Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 23 23 using System.Collections; 24 24 using System.Collections.Generic; 25 using System.Collections.ObjectModel;26 25 using System.ComponentModel; 27 using System.Linq;28 using System.Text;29 26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 30 27 -
trunk/sources/HeuristicLab.Collections/3.3/ReadOnlyObservableSet.cs
r2623 r2790 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-20 08Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 23 23 using System.Collections; 24 24 using System.Collections.Generic; 25 using System.Collections.ObjectModel;26 25 using System.ComponentModel; 27 using System.Linq;28 using System.Text;29 26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 30 27
Note: See TracChangeset
for help on using the changeset viewer.