2002-05-07 Rodrigo Moya <rodrigo@ximian.com>
[mono.git] / mcs / class / System / System.ComponentModel / IEditableObject.cs
1 //
2 // System.ComponentModel.IEditableObject.cs
3 //
4 // (C) 2002 Ximian, Inc.  http://www.ximian.com
5 //
6 // Authors:
7 //   Rodrigo Moya (rodrigo@ximian.com)
8 //
9
10 namespace System.ComponentModel
11 {
12         public interface IEditableObject
13         {
14                 void BeginEdit();
15
16                 void CancelEdit();
17
18                 void EndEdit();
19         }
20 }