From: <bo...@us...> - 2010-05-19 08:05:11
|
Revision: 393 http://xmlunit.svn.sourceforge.net/xmlunit/?rev=393&view=rev Author: bodewig Date: 2010-05-19 08:05:05 +0000 (Wed, 19 May 2010) Log Message: ----------- documentation Modified Paths: -------------- trunk/xmlunit/src/main/net-core/input/AbstractSource.cs trunk/xmlunit/src/main/net-core/input/DOMSource.cs trunk/xmlunit/src/main/net-core/input/ReaderSource.cs trunk/xmlunit/src/main/net-core/input/StreamSource.cs Modified: trunk/xmlunit/src/main/net-core/input/AbstractSource.cs =================================================================== --- trunk/xmlunit/src/main/net-core/input/AbstractSource.cs 2010-05-19 08:04:25 UTC (rev 392) +++ trunk/xmlunit/src/main/net-core/input/AbstractSource.cs 2010-05-19 08:05:05 UTC (rev 393) @@ -14,6 +14,10 @@ using System.Xml; namespace net.sf.xmlunit.input { + /// <summary> + /// Provides a base implementation for the different concrete ISource + /// implementations. + /// </summary> public abstract class AbstractSource : ISource { private string systemId; private readonly XmlReader reader; Modified: trunk/xmlunit/src/main/net-core/input/DOMSource.cs =================================================================== --- trunk/xmlunit/src/main/net-core/input/DOMSource.cs 2010-05-19 08:04:25 UTC (rev 392) +++ trunk/xmlunit/src/main/net-core/input/DOMSource.cs 2010-05-19 08:05:05 UTC (rev 393) @@ -14,6 +14,9 @@ using System.Xml; namespace net.sf.xmlunit.input { + /// <summary> + /// ISource implementation encapsulating a DOM Node. + /// </summary> public class DOMSource : AbstractSource { public DOMSource(XmlNode node) : base(new XmlNodeReader(node)) { Modified: trunk/xmlunit/src/main/net-core/input/ReaderSource.cs =================================================================== --- trunk/xmlunit/src/main/net-core/input/ReaderSource.cs 2010-05-19 08:04:25 UTC (rev 392) +++ trunk/xmlunit/src/main/net-core/input/ReaderSource.cs 2010-05-19 08:05:05 UTC (rev 393) @@ -14,6 +14,9 @@ using System.Xml; namespace net.sf.xmlunit.input { + /// <summary> + /// ISource implementation encapsulating a plain XmlReader. + /// </summary> public class ReaderSource : AbstractSource { public ReaderSource(XmlReader rdr) : base(rdr) { Modified: trunk/xmlunit/src/main/net-core/input/StreamSource.cs =================================================================== --- trunk/xmlunit/src/main/net-core/input/StreamSource.cs 2010-05-19 08:04:25 UTC (rev 392) +++ trunk/xmlunit/src/main/net-core/input/StreamSource.cs 2010-05-19 08:05:05 UTC (rev 393) @@ -15,6 +15,10 @@ using System.Xml; namespace net.sf.xmlunit.input { + /// <summary> + /// ISource implementation encapsulating data read from a stream + /// or a reader. + /// </summary> public class StreamSource : AbstractSource { public StreamSource(TextReader rdr) : base(XmlReader.Create(rdr)) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |