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 2007/03/01 19:32:26 UTC

svn commit: r513429 - in /ibatis/trunk/cs/mapper: IBatisNet.Common/Utilities/Objects/ObjectProbe.cs IBatisNet.DataMapper/Mapper.cs

Author: gbayon
Date: Thu Mar  1 10:32:25 2007
New Revision: 513429

URL: http://svn.apache.org/viewvc?view=rev&rev=513429
Log:
- Minor Change

Modified:
    ibatis/trunk/cs/mapper/IBatisNet.Common/Utilities/Objects/ObjectProbe.cs
    ibatis/trunk/cs/mapper/IBatisNet.DataMapper/Mapper.cs

Modified: ibatis/trunk/cs/mapper/IBatisNet.Common/Utilities/Objects/ObjectProbe.cs
URL: http://svn.apache.org/viewvc/ibatis/trunk/cs/mapper/IBatisNet.Common/Utilities/Objects/ObjectProbe.cs?view=diff&rev=513429&r1=513428&r2=513429
==============================================================================
--- ibatis/trunk/cs/mapper/IBatisNet.Common/Utilities/Objects/ObjectProbe.cs (original)
+++ ibatis/trunk/cs/mapper/IBatisNet.Common/Utilities/Objects/ObjectProbe.cs Thu Mar  1 10:32:25 2007
@@ -419,7 +419,7 @@
         /// <param name="memberName">Name of the member.</param>
         /// <param name="accessorFactory">The accessor factory.</param>
         /// <returns>The member's value</returns>
-		protected static object GetMember(object obj, string memberName,
+		public static object GetMember(object obj, string memberName,
             AccessorFactory accessorFactory)
 		{
 			try 
@@ -526,7 +526,7 @@
         /// <param name="memberName">Name of the member.</param>
         /// <param name="memberValue">The member value.</param>
         /// <param name="accessorFactory">The accessor factory.</param>
-		protected static void SetMember(object obj, string memberName, object memberValue,
+		public static void SetMember(object obj, string memberName, object memberValue,
             AccessorFactory accessorFactory)
 		{
 			try 

Modified: ibatis/trunk/cs/mapper/IBatisNet.DataMapper/Mapper.cs
URL: http://svn.apache.org/viewvc/ibatis/trunk/cs/mapper/IBatisNet.DataMapper/Mapper.cs?view=diff&rev=513429&r1=513428&r2=513429
==============================================================================
--- ibatis/trunk/cs/mapper/IBatisNet.DataMapper/Mapper.cs (original)
+++ ibatis/trunk/cs/mapper/IBatisNet.DataMapper/Mapper.cs Thu Mar  1 10:32:25 2007
@@ -42,7 +42,7 @@
 		/// 
 		/// </summary>
 		/// <param name="obj"></param>
-		protected static void Configure (object obj)
+		public static void Configure (object obj)
 		{
 			_mapper = null;
 		}
@@ -50,7 +50,7 @@
 		/// <summary>
 		/// Init the 'default' SqlMapper defined by the SqlMap.Config file.
 		/// </summary>
-		protected static void InitMapper()
+		public static void InitMapper()
 		{
 			ConfigureHandler handler = new ConfigureHandler (Configure);
 			DomSqlMapBuilder builder = new DomSqlMapBuilder();