Fixed "extra byte" problem (see ChangeLong)
[mono.git] / mcs / class / System.Windows.Forms / System.Windows.Forms / LinkLabel.LinkCollection.cs
1 //
2 // System.Windows.Forms.LinkLabel.LinkCollection
3 //
4 // Author:
5 //   stubbed out by Daniel Carrera (dcarrera@math.toronto.edu)
6 //
7 // (C) 2002 Ximian, Inc
8 //
9
10 namespace System.Windows.Forms {
11
12         // <summary>
13         //      This is only a template.  Nothing is implemented yet.
14         //
15         // </summary>
16
17         //public class LinkLabel.LinkCollection :  IList, ICollection, IEnumerable {
18
19                 //
20                 //  --- Constructor
21                 //
22                 //[MonoTODO]
23                 //public LinkLabel.LinkCollection(LinkLabel owner)
24                 //{
25                 //      throw new NotImplementedException ();
26                 //}
27
28                 //
29                 //  --- Public Properties
30                 //
31                 //[MonoTODO]
32                 //public int Count {
33                 //      get {
34                 //              throw new NotImplementedException ();
35                 //      }
36                 //}
37                 //[MonoTODO]
38                 //public bool IsReadOnly {
39                 //      get {
40                 //              throw new NotImplementedException ();
41                 //      }
42                 //}
43                 //[MonoTODO]
44                 //public virtual LinkLabel.Link this[ int index]  {
45                 //      get {
46                 //              throw new NotImplementedException ();
47                 //      }
48                 //      set {
49                 //              throw new NotImplementedException ();
50                 //      }
51                 //}
52
53                 //
54                 //  --- Public Methods
55                 //
56                 //[MonoTODO]
57                 //public Link Add(int val1, int val2)
58                 //{
59                 //      throw new NotImplementedException ();
60                 //}
61                 //[MonoTODO]
62                 //public Link Add(int val1, int val2, object o)
63                 //{
64                 //      throw new NotImplementedException ();
65                 //}
66                 //[MonoTODO]
67                 //public virtual void Clear()
68                 //{
69                 //      throw new NotImplementedException ();
70                 //}
71                 //[MonoTODO]
72                 //public bool Contains(LinkLabel.Link link)
73                 //{
74                 //      throw new NotImplementedException ();
75                 //}
76                 //[MonoTODO]
77                 //public virtual bool Equals(object o);
78                 //{
79                 //      throw new NotImplementedException ();
80                 //}
81                 //[MonoTODO]
82                 //public static bool Equals(object o1, object o2);
83                 //{
84                 //      throw new NotImplementedException ();
85                 //}
86                 //[MonoTODO]
87                 //public IEnumerator GetEnumerator()
88                 //{
89                 //      throw new NotImplementedException ();
90                 //}
91                 //[MonoTODO]
92                 //public int IndexOf(LinkLabel.Link link)
93                 //{
94                 //      throw new NotImplementedException ();
95                 //}
96                 //[MonoTODO]
97                 //public void Remove(LinkLabel.Link value)
98                 //{
99                 //      throw new NotImplementedException ();
100                 //}
101                 //[MonoTODO]
102                 //public void RemoveAt(int index)
103                 //{
104                 //      throw new NotImplementedException ();
105                 //}
106         // }
107 }