Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/18/10 03:00:00 (14 years ago)
Author:
swagner
Message:

Changed items and views according to the refactoring of HeuristicLab.Collections (#977)

Location:
trunk/sources/HeuristicLab.Core/3.3
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Core/3.3/ExecutionContext.cs

    r3385 r3393  
    3737    }
    3838
    39     public IObservableKeyedCollection<string, IParameter> Parameters {
     39    public IKeyedItemCollection<string, IParameter> Parameters {
    4040      get { return parameterizedItem.Parameters; }
    4141    }
  • trunk/sources/HeuristicLab.Core/3.3/Interfaces/IExecutionContext.cs

    r3376 r3393  
    2929  public interface IExecutionContext : IDeepCloneable {
    3030    IExecutionContext Parent { get; }
    31     IObservableKeyedCollection<string, IParameter> Parameters { get; }
     31    IKeyedItemCollection<string, IParameter> Parameters { get; }
    3232    IScope Scope { get; }
    3333
  • trunk/sources/HeuristicLab.Core/3.3/Interfaces/IParameterizedItem.cs

    r3260 r3393  
    2828  /// </summary>
    2929  public interface IParameterizedItem : IItem {
    30     IObservableKeyedCollection<string, IParameter> Parameters { get; }
     30    IKeyedItemCollection<string, IParameter> Parameters { get; }
    3131
    3232    void CollectParameterValues(IDictionary<string, IItem> values);
  • trunk/sources/HeuristicLab.Core/3.3/ParameterizedNamedItem.cs

    r3376 r3393  
    3838      get { return parameters; }
    3939    }
    40     private ReadOnlyObservableKeyedCollection<string, IParameter> readOnlyParameters;
    41     IObservableKeyedCollection<string, IParameter> IParameterizedItem.Parameters {
     40    private ReadOnlyKeyedItemCollection<string, IParameter> readOnlyParameters;
     41    IKeyedItemCollection<string, IParameter> IParameterizedItem.Parameters {
    4242      get {
    4343        if (readOnlyParameters == null) readOnlyParameters = parameters.AsReadOnly();
Note: See TracChangeset for help on using the changeset viewer.