You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ibatis.apache.org by gb...@apache.org on 2006/05/21 14:27:14 UTC

svn commit: r408164 [3/3] - in /ibatis/trunk/cs/mapper: IBatisNet.Common.Test/NUnit/CommonTests/Transaction/ IBatisNet.Common/ IBatisNet.Common/Utilities/ IBatisNet.Common/Utilities/Objects/ IBatisNet.Common/Utilities/Objects/Members/ IBatisNet.Common/...

Modified: ibatis/trunk/cs/mapper/IBatisNet.DataMapper/TypeHandlers/Int32TypeHandler.cs
URL: http://svn.apache.org/viewvc/ibatis/trunk/cs/mapper/IBatisNet.DataMapper/TypeHandlers/Int32TypeHandler.cs?rev=408164&r1=408163&r2=408164&view=diff
==============================================================================
--- ibatis/trunk/cs/mapper/IBatisNet.DataMapper/TypeHandlers/Int32TypeHandler.cs (original)
+++ ibatis/trunk/cs/mapper/IBatisNet.DataMapper/TypeHandlers/Int32TypeHandler.cs Sun May 21 05:27:09 2006
@@ -38,7 +38,7 @@
 	/// <summary>
 	/// Summary description for Int32TypeHandler.
 	/// </summary>
-	internal class Int32TypeHandler : BaseTypeHandler
+    internal sealed class Int32TypeHandler : BaseTypeHandler
 	{
 
 		/// <summary>

Modified: ibatis/trunk/cs/mapper/IBatisNet.DataMapper/TypeHandlers/Int64TypeHandler.cs
URL: http://svn.apache.org/viewvc/ibatis/trunk/cs/mapper/IBatisNet.DataMapper/TypeHandlers/Int64TypeHandler.cs?rev=408164&r1=408163&r2=408164&view=diff
==============================================================================
--- ibatis/trunk/cs/mapper/IBatisNet.DataMapper/TypeHandlers/Int64TypeHandler.cs (original)
+++ ibatis/trunk/cs/mapper/IBatisNet.DataMapper/TypeHandlers/Int64TypeHandler.cs Sun May 21 05:27:09 2006
@@ -38,7 +38,7 @@
 	/// <summary>
 	/// Description résumée de Int64TypeHandler.
 	/// </summary>
-	internal class Int64TypeHandler : BaseTypeHandler
+    internal sealed class Int64TypeHandler : BaseTypeHandler
 	{
 
 		/// <summary>

Modified: ibatis/trunk/cs/mapper/IBatisNet.DataMapper/TypeHandlers/ObjectTypeHandler.cs
URL: http://svn.apache.org/viewvc/ibatis/trunk/cs/mapper/IBatisNet.DataMapper/TypeHandlers/ObjectTypeHandler.cs?rev=408164&r1=408163&r2=408164&view=diff
==============================================================================
--- ibatis/trunk/cs/mapper/IBatisNet.DataMapper/TypeHandlers/ObjectTypeHandler.cs (original)
+++ ibatis/trunk/cs/mapper/IBatisNet.DataMapper/TypeHandlers/ObjectTypeHandler.cs Sun May 21 05:27:09 2006
@@ -38,7 +38,7 @@
 	/// <summary>
 	/// Description résumée de ObjectTypeHandler.
 	/// </summary>
-	internal class ObjectTypeHandler: BaseTypeHandler
+    internal sealed class ObjectTypeHandler : BaseTypeHandler
 	{
 
 		/// <summary>

Modified: ibatis/trunk/cs/mapper/IBatisNet.DataMapper/TypeHandlers/ParameterSetterImpl.cs
URL: http://svn.apache.org/viewvc/ibatis/trunk/cs/mapper/IBatisNet.DataMapper/TypeHandlers/ParameterSetterImpl.cs?rev=408164&r1=408163&r2=408164&view=diff
==============================================================================
--- ibatis/trunk/cs/mapper/IBatisNet.DataMapper/TypeHandlers/ParameterSetterImpl.cs (original)
+++ ibatis/trunk/cs/mapper/IBatisNet.DataMapper/TypeHandlers/ParameterSetterImpl.cs Sun May 21 05:27:09 2006
@@ -35,7 +35,7 @@
 	/// <summary>
 	/// A ParameterSetter implementation
 	/// </summary>
-	public class ParameterSetterImpl  : IParameterSetter	
+    public sealed class ParameterSetterImpl : IParameterSetter	
 	{
 		#region Fields
 

Modified: ibatis/trunk/cs/mapper/IBatisNet.DataMapper/TypeHandlers/ResultGetterImpl.cs
URL: http://svn.apache.org/viewvc/ibatis/trunk/cs/mapper/IBatisNet.DataMapper/TypeHandlers/ResultGetterImpl.cs?rev=408164&r1=408163&r2=408164&view=diff
==============================================================================
--- ibatis/trunk/cs/mapper/IBatisNet.DataMapper/TypeHandlers/ResultGetterImpl.cs (original)
+++ ibatis/trunk/cs/mapper/IBatisNet.DataMapper/TypeHandlers/ResultGetterImpl.cs Sun May 21 05:27:09 2006
@@ -34,7 +34,7 @@
 	/// <summary>
 	/// Description résumée de ResultGetterImpl.
 	/// </summary>
-	public class ResultGetterImpl : IResultGetter
+    public sealed class ResultGetterImpl : IResultGetter
 	{
 
 		#region Fields

Modified: ibatis/trunk/cs/mapper/IBatisNet.DataMapper/TypeHandlers/SingleTypeHandler.cs
URL: http://svn.apache.org/viewvc/ibatis/trunk/cs/mapper/IBatisNet.DataMapper/TypeHandlers/SingleTypeHandler.cs?rev=408164&r1=408163&r2=408164&view=diff
==============================================================================
--- ibatis/trunk/cs/mapper/IBatisNet.DataMapper/TypeHandlers/SingleTypeHandler.cs (original)
+++ ibatis/trunk/cs/mapper/IBatisNet.DataMapper/TypeHandlers/SingleTypeHandler.cs Sun May 21 05:27:09 2006
@@ -38,7 +38,7 @@
 	/// <summary>
 	/// Description résumée de SingleTypeHandler.
 	/// </summary>
-	internal class SingleTypeHandler : BaseTypeHandler
+    internal sealed class SingleTypeHandler : BaseTypeHandler
 	{
 
 		/// <summary>

Modified: ibatis/trunk/cs/mapper/IBatisNet.DataMapper/TypeHandlers/StringTypeHandler.cs
URL: http://svn.apache.org/viewvc/ibatis/trunk/cs/mapper/IBatisNet.DataMapper/TypeHandlers/StringTypeHandler.cs?rev=408164&r1=408163&r2=408164&view=diff
==============================================================================
--- ibatis/trunk/cs/mapper/IBatisNet.DataMapper/TypeHandlers/StringTypeHandler.cs (original)
+++ ibatis/trunk/cs/mapper/IBatisNet.DataMapper/TypeHandlers/StringTypeHandler.cs Sun May 21 05:27:09 2006
@@ -38,7 +38,7 @@
 	/// <summary>
 	/// Description résumée de SByteTypeHandler.
 	/// </summary>
-	internal class StringTypeHandler : BaseTypeHandler
+    internal sealed class StringTypeHandler : BaseTypeHandler
 	{
 
 		/// <summary>

Modified: ibatis/trunk/cs/mapper/IBatisNet.DataMapper/TypeHandlers/TimeSpanTypeHandler.cs
URL: http://svn.apache.org/viewvc/ibatis/trunk/cs/mapper/IBatisNet.DataMapper/TypeHandlers/TimeSpanTypeHandler.cs?rev=408164&r1=408163&r2=408164&view=diff
==============================================================================
--- ibatis/trunk/cs/mapper/IBatisNet.DataMapper/TypeHandlers/TimeSpanTypeHandler.cs (original)
+++ ibatis/trunk/cs/mapper/IBatisNet.DataMapper/TypeHandlers/TimeSpanTypeHandler.cs Sun May 21 05:27:09 2006
@@ -38,7 +38,7 @@
 	/// <summary>
 	/// Description résumée de TimespanTypeHandler.
 	/// </summary>
-	internal class TimeSpanTypeHandler : BaseTypeHandler
+    internal sealed class TimeSpanTypeHandler : BaseTypeHandler
 	{
 
         /// <summary>

Modified: ibatis/trunk/cs/mapper/IBatisNet.DataMapper/TypeHandlers/UnknownTypeHandler.cs
URL: http://svn.apache.org/viewvc/ibatis/trunk/cs/mapper/IBatisNet.DataMapper/TypeHandlers/UnknownTypeHandler.cs?rev=408164&r1=408163&r2=408164&view=diff
==============================================================================
--- ibatis/trunk/cs/mapper/IBatisNet.DataMapper/TypeHandlers/UnknownTypeHandler.cs (original)
+++ ibatis/trunk/cs/mapper/IBatisNet.DataMapper/TypeHandlers/UnknownTypeHandler.cs Sun May 21 05:27:09 2006
@@ -37,7 +37,7 @@
 	/// <summary>
 	///  Implementation of TypeHandler for dealing with unknown types
 	/// </summary>
-	internal class UnknownTypeHandler : BaseTypeHandler
+    internal sealed class UnknownTypeHandler : BaseTypeHandler
 	{
 
 		private TypeHandlerFactory _factory = null;