2002-07-22 Tim Coleman <tim@timcoleman.com>
[mono.git] / mcs / class / System.XML / System.Xml.Serialization / CodeIdentifiers.cs
1 // \r
2 // System.Xml.Serialization.CodeIdentifiers \r
3 //\r
4 // Author:\r
5 //   Tim Coleman (tim@timcoleman.com)\r
6 //\r
7 // Copyright (C) Tim Coleman, 2002\r
8 //\r
9 \r
10 namespace System.Xml.Serialization {\r
11         public class CodeIdentifiers {\r
12 \r
13                 #region Fields\r
14 \r
15                 bool useCamelCasing;\r
16 \r
17                 #endregion\r
18 \r
19                 #region Constructors\r
20 \r
21                 public CodeIdentifiers ()\r
22                 {\r
23                 }\r
24 \r
25                 #endregion // Constructors\r
26 \r
27                 #region Properties\r
28 \r
29                 public bool UseCamelCasing {\r
30                         get { return useCamelCasing; }\r
31                         set { useCamelCasing = value; }\r
32                 }\r
33 \r
34                 #endregion // Properties\r
35 \r
36                 #region Methods\r
37 \r
38                 [MonoTODO]\r
39                 public void Add (string identifier, object value)\r
40                 {\r
41                         throw new NotImplementedException ();\r
42                 }\r
43 \r
44                 [MonoTODO]\r
45                 public void AddReserved (string identifier)\r
46                 {\r
47                         throw new NotImplementedException ();\r
48                 }\r
49 \r
50                 [MonoTODO]\r
51                 public void AddUnique (string identifier, object value)\r
52                 {\r
53                         throw new NotImplementedException ();\r
54                 }\r
55 \r
56                 [MonoTODO]\r
57                 public void Clear ()\r
58                 {\r
59                         throw new NotImplementedException ();\r
60                 }\r
61 \r
62                 [MonoTODO]\r
63                 public bool IsInUse (string identifier)\r
64                 {\r
65                         throw new NotImplementedException ();\r
66                 }\r
67 \r
68                 [MonoTODO]\r
69                 public string MakeRightCase (string identifier)\r
70                 {\r
71                         throw new NotImplementedException ();\r
72                 }\r
73 \r
74                 [MonoTODO]\r
75                 public string MakeUnique (string identifier)\r
76                 {\r
77                         throw new NotImplementedException ();\r
78                 }\r
79 \r
80                 [MonoTODO]\r
81                 public void Remove (string identifier)\r
82                 {\r
83                         throw new NotImplementedException ();\r
84                 }\r
85 \r
86                 [MonoTODO]\r
87                 public void RemoveReserved (string identifier)\r
88                 {\r
89                         throw new NotImplementedException ();\r
90                 }\r
91 \r
92                 [MonoTODO]\r
93                 public object ToArray (Type type)\r
94                 {\r
95                         throw new NotImplementedException ();\r
96                 }\r
97 \r
98                 #endregion // Methods\r
99         }\r
100 }\r