Free cookie consent management tool by TermsFeed Policy Generator

Changeset 5002


Ignore:
Timestamp:
11/30/10 16:32:24 (13 years ago)
Author:
epitzer
Message:

unseal views, rename OperatorTrace.Generate to Regenerate, and remove questionable virtual from property with private setter (#47)

Location:
branches/HeuristicLab.DebugEngine
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.DebugEngine/DebugEngine.cs

    r5001 r5002  
    9595    [Storable]
    9696    private IOperation currentOperation;
    97     public virtual IOperation CurrentOperation {
     97    public IOperation CurrentOperation {
    9898      get { return currentOperation; }
    9999      private set {
     
    268268          Log.LogMessage("Nothing to do");
    269269        }
    270         OperatorTrace.Generate(CurrentAtomicOperation);
     270        OperatorTrace.Regenerate(CurrentAtomicOperation);
    271271      } catch (Exception x) {
    272272        OnExceptionOccurred(x);
  • branches/HeuristicLab.DebugEngine/OperatorTrace.cs

    r4998 r5002  
    104104    }
    105105
    106     public virtual void Generate(IAtomicOperation operation) {
     106    public virtual void Regenerate(IAtomicOperation operation) {
    107107      if (operation == null)
    108108        return;
  • branches/HeuristicLab.DebugEngine/OperatorTraceView.cs

    r5001 r5002  
    3333  [View("Operator Trace View")]
    3434  [Content(typeof(OperatorTrace), IsDefaultView = true)]
    35   public sealed partial class OperatorTraceView : AsynchronousContentView {
     35  public partial class OperatorTraceView : AsynchronousContentView {
    3636
    3737    public new OperatorTrace Content {
Note: See TracChangeset for help on using the changeset viewer.