* ArrayEditor.cs: removed extra finalizer
[mono.git] / mcs / class / System.Design / System.ComponentModel.Design / DateTimeEditor.cs
1 //
2 // System.ComponentModel.Design.DateTimeEditor
3 //
4 // Authors:
5 //      Gert Driesen (drieseng@users.sourceforge.net)
6 //
7 // (C) 2004 Novell
8 //
9
10 using System.Windows.Forms;
11 using System.Drawing.Design;
12
13 namespace System.ComponentModel.Design
14 {
15         public class DateTimeEditor : UITypeEditor
16         {
17                 public DateTimeEditor ()
18                 {
19                 }
20
21                 [MonoTODO]
22                 public override object EditValue (ITypeDescriptorContext context, IServiceProvider provider, object value)
23                 {
24                         throw new NotImplementedException ();
25                 }
26
27                 public override UITypeEditorEditStyle GetEditStyle (ITypeDescriptorContext context)
28                 {
29                         return UITypeEditorEditStyle.DropDown;
30                 }
31         }
32 }