Subversion Repository Public Repository

WOX2

Diff Revisions 13 vs 14 for /trunk/CSharp/src/wox/serial/SimpleReader.cs

Diff revisions: vs.
  @@ -1,19 +1,32 @@
1 1 using System.Collections;
2 2
3 - /**
4 - * This is a simple XML to object de-serializer. The SimpleReader class
5 - * extends WoxReader. It reads an object from a XMLreader object
6 - * and puts it back to a live C# object. The XML representation of the
7 - * object is a standard WOX representation. For more information about
8 - * the XML representation please visit: http://woxserializer.sourceforge.net/
9 - *
10 - * Authors: Carlos R. Jaimez Gonzalez
11 - * Simon M. Lucas
12 - * Version: SimpleReader.cs - 1.0
13 - */
3 + /// <header>
4 + /// <wox>
5 + /// <version>1.0</version>
6 + /// <author>Carlos R. Jaimez Gonzalez</author>
7 + /// <author>Simon M. Lucas</author>
8 + /// <site>http://woxserializer.sourceforge.net/</site>
9 + /// </wox>
10 + /// <wox>
11 + /// <version>1.5</version>
12 + /// <author>Steven M Lewis</author>
13 + /// </wox>
14 + /// <wox>
15 + /// <version>2.0</version>
16 + /// <author>George A Smith</author>
17 + /// <svn>http://woxserializer.sourceforge.net/</svn>
18 + /// <note>XML form for vs 2 is more compact and therefor incompatible with vs 1</note>
19 + /// </wox>
20 + /// </header>
14 21
15 22 namespace wox.serial
16 23 {
24 + /// <summary>
25 + /// This is a simple XML to object de-serializer. The SimpleReader class
26 + /// extends WoxReader. It reads an object from a XMLreader object
27 + /// and puts it back to a live C# object.
28 + /// </summary>
29 +
17 30 public class SimpleReader : Serial, WoxReader
18 31 {
19 32 private readonly Hashtable mIDtoInstances = new Hashtable();