Changeset 3368 for trunk/sources/HeuristicLab.Collections
- Timestamp:
- 04/16/10 04:53:58 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.Collections/3.3
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Collections/3.3/HeuristicLab.Collections-3.3.csproj
r2900 r3368 122 122 </ItemGroup> 123 123 <ItemGroup> 124 <ProjectReference Include="..\..\HeuristicLab.Common\3.2\HeuristicLab.Common-3.2.csproj"> 125 <Project>{1FC004FC-59AF-4249-B1B6-FF25873A20E4}</Project> 126 <Name>HeuristicLab.Common-3.2</Name> 127 </ProjectReference> 124 128 <ProjectReference Include="..\..\HeuristicLab.Persistence\3.3\HeuristicLab.Persistence-3.3.csproj"> 125 129 <Project>{102BC7D3-0EF9-439C-8F6D-96FF0FDB8E1B}</Project> -
trunk/sources/HeuristicLab.Collections/3.3/HeuristicLabCollectionsPlugin.cs.frame
r2790 r3368 28 28 [Plugin("HeuristicLab.Collections", "3.3.0.$WCREV$")] 29 29 [PluginFile("HeuristicLab.Collections-3.3.dll", PluginFileType.Assembly)] 30 [PluginDependency("HeuristicLab.Common", "3.2")] 30 31 [PluginDependency("HeuristicLab.Persistence", "3.3")] 31 32 public class HeuristicLabCollectionsPlugin : PluginBase { -
trunk/sources/HeuristicLab.Collections/3.3/IObservableArray.cs
r3317 r3368 23 23 using System.Collections.Generic; 24 24 using System.ComponentModel; 25 using HeuristicLab.Common; 25 26 26 27 namespace HeuristicLab.Collections { 27 public interface IObservableArray<T> : IList<T>, INotifyObservableArrayItemsChanged<T>, INotifyPropertyChanged { 28 bool ReadOnlyView { get; set; } 28 public interface IObservableArray<T> : IList<T>, INotifyObservableArrayItemsChanged<T>, INotifyPropertyChanged, IContent { 29 29 int Length { get; } 30 31 event EventHandler ReadOnlyViewChanged;32 30 } 33 31 } -
trunk/sources/HeuristicLab.Collections/3.3/IObservableCollection.cs
r3317 r3368 23 23 using System.Collections.Generic; 24 24 using System.ComponentModel; 25 using HeuristicLab.Common; 25 26 26 27 namespace HeuristicLab.Collections { 27 public interface IObservableCollection<T> : ICollection<T>, INotifyObservableCollectionItemsChanged<T>, INotifyPropertyChanged { 28 bool ReadOnlyView { get; set; } 29 30 event EventHandler ReadOnlyViewChanged; 31 } 28 public interface IObservableCollection<T> : ICollection<T>, INotifyObservableCollectionItemsChanged<T>, INotifyPropertyChanged, IContent { } 32 29 } -
trunk/sources/HeuristicLab.Collections/3.3/ReadOnlyObservableArray.cs
r3317 r3368 25 25 using System.ComponentModel; 26 26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 27 using HeuristicLab.Common; 27 28 28 29 namespace HeuristicLab.Collections { … … 122 123 } 123 124 124 event EventHandler I ObservableArray<T>.ReadOnlyViewChanged {125 event EventHandler IContent.ReadOnlyViewChanged { 125 126 add { } 126 127 remove { } -
trunk/sources/HeuristicLab.Collections/3.3/ReadOnlyObservableCollection.cs
r3317 r3368 24 24 using System.Collections.Generic; 25 25 using System.ComponentModel; 26 using HeuristicLab.Common; 26 27 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 27 28 … … 100 101 } 101 102 102 event EventHandler I ObservableCollection<T>.ReadOnlyViewChanged {103 event EventHandler IContent.ReadOnlyViewChanged { 103 104 add { } 104 105 remove { } -
trunk/sources/HeuristicLab.Collections/3.3/ReadOnlyObservableDictionary.cs
r3317 r3368 24 24 using System.Collections.Generic; 25 25 using System.ComponentModel; 26 using HeuristicLab.Common; 26 27 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 27 28 … … 128 129 } 129 130 130 event EventHandler I ObservableCollection<KeyValuePair<TKey, TValue>>.ReadOnlyViewChanged {131 event EventHandler IContent.ReadOnlyViewChanged { 131 132 add { } 132 133 remove { } -
trunk/sources/HeuristicLab.Collections/3.3/ReadOnlyObservableKeyedCollection.cs
r3317 r3368 24 24 using System.Collections.Generic; 25 25 using System.ComponentModel; 26 using HeuristicLab.Common; 26 27 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 27 28 … … 117 118 } 118 119 119 event EventHandler I ObservableCollection<TItem>.ReadOnlyViewChanged {120 event EventHandler IContent.ReadOnlyViewChanged { 120 121 add { } 121 122 remove { } -
trunk/sources/HeuristicLab.Collections/3.3/ReadOnlyObservableList.cs
r3317 r3368 24 24 using System.Collections.Generic; 25 25 using System.ComponentModel; 26 using HeuristicLab.Common; 26 27 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 27 28 … … 124 125 } 125 126 126 event EventHandler I ObservableCollection<T>.ReadOnlyViewChanged {127 event EventHandler IContent.ReadOnlyViewChanged { 127 128 add { } 128 129 remove { } -
trunk/sources/HeuristicLab.Collections/3.3/ReadOnlyObservableSet.cs
r3317 r3368 24 24 using System.Collections.Generic; 25 25 using System.ComponentModel; 26 using HeuristicLab.Common; 26 27 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 27 28 … … 141 142 } 142 143 143 event EventHandler I ObservableCollection<T>.ReadOnlyViewChanged {144 event EventHandler IContent.ReadOnlyViewChanged { 144 145 add { } 145 146 remove { }
Note: See TracChangeset
for help on using the changeset viewer.