Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/27/09 18:12:38 (15 years ago)
Author:
epitzer
Message:

Refactor saving into IEditor and provide choice of compressed and uncompressed HeuristicLab archives during saving (#646)

File:
1 edited

Legend:

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

    r776 r1921  
    3636
    3737    /// <summary>
     38    /// Gets or sets, it the contained item should be compressed.
     39    /// </summary>
     40    bool Compressed { get; set; }
     41
     42    /// <summary>
     43    /// Saves the contained object to a file.
     44    /// </summary>
     45    /// <remarks>The filename to save the contained item to is given by <see cref="Filename"/>.</remarks>
     46    void Save();
     47
     48    /// <summary>
    3849    /// Occurs when the filename was changed.
    3950    /// </summary>
    4051    event EventHandler FilenameChanged;
     52
     53    /// <summary>
     54    /// Occurs after a save operation is finished.
     55    /// </summary>
     56    event EventHandler SaveFinished;
    4157  }
    4258}
Note: See TracChangeset for help on using the changeset viewer.