Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
10/05/09 01:48:35 (15 years ago)
Author:
swagner
Message:

Corrected minor code formatting issues (#769)

Location:
trunk/sources/HeuristicLab.BackgroundProcessing/3.2
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.BackgroundProcessing/3.2/DispatchedView.cs

    r2404 r2408  
    1111
    1212namespace HeuristicLab.BackgroundProcessing {
    13 
    1413  /// <summary>
    1514  /// Takes an <code>ObservableEnumerable</code> and transfers all events to the
     
    1918  /// <typeparam name="T"></typeparam>
    2019  public class DispatchedView<T> : ObservableEnumerable<T> where T : class {
    21 
    2220    private List<T> cache;
    2321    private ObservableEnumerable<T> source;
     
    5149      if (CollectionChanged != null)
    5250        CollectionChanged(this, args);
    53     }   
     51    }
    5452
    5553    public IEnumerator<T> GetEnumerator() {
  • trunk/sources/HeuristicLab.BackgroundProcessing/3.2/HeuristicLabBackgroundProcessingPlugin.cs

    r2404 r2408  
    22
    33namespace HeuristicLab.BackgroundProcessing {
    4 
    54  [ClassInfo(Name = "HeuristicLab.BackgroundProcessing-3.2")]
    6   [PluginFile(Filename = "HeuristicLab.BackgroundProcessing-3.2.dll", Filetype = PluginFileType.Assembly)] 
    7   public class HeuristicLabBackgroundProcessingPlugin : PluginBase {}
     5  [PluginFile(Filename = "HeuristicLab.BackgroundProcessing-3.2.dll", Filetype = PluginFileType.Assembly)]
     6  public class HeuristicLabBackgroundProcessingPlugin : PluginBase { }
    87}
  • trunk/sources/HeuristicLab.BackgroundProcessing/3.2/ObservableBackgroundWorker.cs

    r2404 r2408  
    88
    99namespace HeuristicLab.BackgroundProcessing {
    10 
    1110  /// <summary>
    1211  /// Extends the BackgroundWorker to make it easier to follow progress and automatically
     
    1413  /// </summary>
    1514  public class ObservableBackgroundWorker : BackgroundWorker, INotifyPropertyChanged {
    16 
    1715    public string Name { get; private set; }
    1816    public int Progress { get; private set; }
     
    6361      }
    6462    }
    65    
     63
    6664    protected void OnWorkerStarted() {
    6765      if (WorkerStarted != null)
  • trunk/sources/HeuristicLab.BackgroundProcessing/3.2/ObservableEnumerable.cs

    r2404 r2408  
    55
    66namespace HeuristicLab.BackgroundProcessing {
    7 
    87  /// <summary>
    98  /// Combines <code>IEnumerable&gt;T&lt;"/></code> and <code>INotifyCollectionChanged</code> into
    10   /// a single interface
     9  /// a single interface.
    1110  /// </summary>
    1211  /// <typeparam name="T"></typeparam>
    1312  public interface ObservableEnumerable<T> : IEnumerable<T>, INotifyCollectionChanged where T : class { }
    14    
    1513}
  • trunk/sources/HeuristicLab.BackgroundProcessing/3.2/WorkerMonitor.cs

    r2404 r2408  
    1010
    1111namespace HeuristicLab.BackgroundProcessing {
    12 
    13 
    1412  /// <summary>
    1513  /// Provides a list of all currently running or pending ObservableBackgroundWorkers.
    1614  /// </summary>
    1715  public class WorkerMonitor : ObservableEnumerable<ObservableBackgroundWorker> {
    18 
    1916    public static WorkerMonitor Default = new WorkerMonitor();
    2017
Note: See TracChangeset for help on using the changeset viewer.