2003-12-06 Dick Porter <dick@ximian.com>
[mono.git] / mcs / class / corlib / System.Globalization / TextElementEnumerator.cs
1 //
2 // System.Globalization.TextElementEnumerator.cs
3 //
4 // Author:
5 //      Dick Porter (dick@ximian.com)
6 //
7 // (C) 2002 Ximian, Inc.
8 //
9
10 using System.Collections;
11
12 namespace System.Globalization {
13
14         [Serializable]
15         public class TextElementEnumerator: IEnumerator {
16                 /* Hide the .ctor() */
17                 TextElementEnumerator() {}
18
19                 [MonoTODO]
20                 public object Current 
21                 {
22                         get {
23                                 throw new NotImplementedException();
24                         }
25                 }
26
27                 [MonoTODO]
28                 public int ElementIndex 
29                 {
30                         get {
31                                 throw new NotImplementedException();
32                         }
33                 }
34
35                 [MonoTODO]
36                 public string GetTextElement()
37                 {
38                         throw new NotImplementedException();
39                 }
40
41                 [MonoTODO]
42                 public bool MoveNext()
43                 {
44                         throw new NotImplementedException();
45                 }
46
47                 [MonoTODO]
48                 public void Reset()
49                 {
50                         throw new NotImplementedException();
51                 }
52         }
53 }