Changeset 1921 for trunk/sources/HeuristicLab.Core/3.3/Interfaces
- Timestamp:
- 05/27/09 18:12:38 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Core/3.3/Interfaces/IEditor.cs
r776 r1921 36 36 37 37 /// <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> 38 49 /// Occurs when the filename was changed. 39 50 /// </summary> 40 51 event EventHandler FilenameChanged; 52 53 /// <summary> 54 /// Occurs after a save operation is finished. 55 /// </summary> 56 event EventHandler SaveFinished; 41 57 } 42 58 }
Note: See TracChangeset
for help on using the changeset viewer.