Added some classes and interfaces to System.ComponentModel.Design
[mono.git] / mcs / class / System / System.ComponentModel.Design / DesignerVerbCollection.cs
1 // System.ComponentModel.Design.DesignerVerbCollection.cs
2 //
3 // Author:
4 //      Alejandro Sánchez Acosta  <raciel@es.gnu.org>
5 //
6 // (C) Alejandro Sánchez Acosta
7 // 
8
9 using System.Collections;
10 using System.Runtime.InteropServices;
11
12 namespace System.ComponentModel.Design
13 {
14         [ComVisible(true)]
15         public class DesignerVerbCollection : CollectionBase
16         {
17                 [MonoTODO]
18                 public DesignerVerbCollection(){
19                         throw new NotImplementedException ();
20                 }
21
22                 [MonoTODO]
23                 public DesignerVerbCollection (DesignerVerb[] value){
24                         throw new NotImplementedException ();
25                 }
26
27                 [MonoTODO]
28                 public DesignerVerb this[int index] 
29                 {
30                         get {
31                                 throw new NotImplementedException ();
32                         }
33                         
34                         set {
35                                 throw new NotImplementedException ();           
36                         }
37                 }
38
39                 [MonoTODO]
40                 public int Add (DesignerVerb value)
41                 {
42                         throw new NotImplementedException ();
43                 }
44
45                 [MonoTODO]
46                 public void AddRange (DesignerVerb[] value)
47                 {
48                         throw new NotImplementedException ();
49                 }
50
51                 [MonoTODO]
52                 public bool Contains (DesignerVerb value)
53                 {
54                         throw new NotImplementedException ();
55                 }
56
57                 [MonoTODO]
58                 public void CopyTo (DesignerVerb[] array, int index)
59                 {
60                         throw new NotImplementedException ();
61                 }
62
63                 [MonoTODO]
64                 public int IndexOf (DesignerVerb value)
65                 {
66                         throw new NotImplementedException ();
67                 }
68
69                 [MonoTODO]
70                 public void Insert (int index, DesignerVerb value)
71                 {
72                         throw new NotImplementedException ();
73                 }
74
75                 [MonoTODO]
76                 protected override void OnClear()
77                 {
78                         throw new NotImplementedException ();
79                 }
80
81                 [MonoTODO]
82                 protected override void OnInsert (int index, object value)
83                 {
84                         throw new NotImplementedException ();
85                 }
86
87                 [MonoTODO]
88                 protected override void OnRemove (int index, object value)
89                 {
90                         throw new NotImplementedException ();
91                 }
92
93                 [MonoTODO]
94                 protected override void OnSet(int index, object oldValue, object newValue)
95                 {
96                         throw new NotImplementedException ();
97                 }
98
99                 [MonoTODO]
100                 protected override void OnValidate(object value)
101                 {
102                         throw new NotImplementedException ();
103                 }
104
105                 [MonoTODO]
106                 public void Remove (DesignerVerb value)
107                 {
108                         throw new NotImplementedException ();
109                 }
110         }       
111 }