Update of /cvsroot/springnet/Spring.Net/src/Spring/Spring.Aop/Aop/Framework/AutoProxy
In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv27812/AutoProxy
Modified Files:
AbstractAutoProxyCreator.cs ObjectNameAutoProxyCreator.cs
Log Message:
Minor changes.
Index: AbstractAutoProxyCreator.cs
===================================================================
RCS file: /cvsroot/springnet/Spring.Net/src/Spring/Spring.Aop/Aop/Framework/AutoProxy/AbstractAutoProxyCreator.cs,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** AbstractAutoProxyCreator.cs 14 Jan 2008 20:49:47 -0000 1.14
--- AbstractAutoProxyCreator.cs 3 Mar 2008 09:28:49 -0000 1.15
***************
*** 366,370 ****
/// <summary>
/// Determines whether the object is an infrastructure type,
! /// IAdvisor, IAdvice, IAspect, AbstractAutoProxyCreator
/// </summary>
/// <param name="type">The object type to compare</param>
--- 366,370 ----
/// <summary>
/// Determines whether the object is an infrastructure type,
! /// IAdvisor, IAdvice, IAdvisors or AbstractAutoProxyCreator
/// </summary>
/// <param name="type">The object type to compare</param>
Index: ObjectNameAutoProxyCreator.cs
===================================================================
RCS file: /cvsroot/springnet/Spring.Net/src/Spring/Spring.Aop/Aop/Framework/AutoProxy/ObjectNameAutoProxyCreator.cs,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** ObjectNameAutoProxyCreator.cs 7 Sep 2007 01:51:49 -0000 1.7
--- ObjectNameAutoProxyCreator.cs 3 Mar 2008 09:28:49 -0000 1.8
***************
*** 44,48 ****
/// </para>
/// </remarks>
- /// <seealso cref="Spring.Aop.Framework.AutoProxy.ObjectNameAutoProxyCreator.SetObjectNames"/>
/// <seealso cref="Spring.Aop.Framework.AutoProxy.ObjectNameAutoProxyCreator.IsMatch"/>
/// <author>Juergen Hoeller</author>
--- 44,47 ----
***************
*** 53,67 ****
private IList objectNames;
-
- /// <summary>
- /// Set the names of the objects that should automatically get wrapped with proxies.
- /// A name can specify a prefix to match by ending with "*", e.g. "myObject,tx*"
- /// will match the object named "myObject" and all objects whose name start with "tx".
- /// </summary>
- public void SetObjectNames(string[] objectNames)
- {
- this.objectNames = new ArrayList(objectNames);
- }
-
/// <summary>
/// Set the names of the objects in IList fashioned way that should automatically
--- 52,55 ----
|