Update of /cvsroot/springnet/Spring.Net/src/Spring/Spring.Aop/Aop
In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv6762
Modified Files:
ITargetSource.cs
Removed Files:
ITargetTypeAware.cs
Log Message:
make exception handling of expressions in exception advice more robuts
remove ITargetTypeAware - requires more changes to internal AOP infrastructure - not worth the effort for this convenience
removed files that were moved to another namespace (AbstractExceptionHander/IExceptionHandler)
--- ITargetTypeAware.cs DELETED ---
Index: ITargetSource.cs
===================================================================
RCS file: /cvsroot/springnet/Spring.Net/src/Spring/Spring.Aop/Aop/ITargetSource.cs,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** ITargetSource.cs 8 Oct 2007 22:04:51 -0000 1.8
--- ITargetSource.cs 10 Oct 2007 18:07:38 -0000 1.9
***************
*** 48,53 ****
/// <author>Aleksandar Seovic (.NET)</author>
/// <version>$Id$</version>
! public interface ITargetSource : ITargetTypeAware
{
/// <summary>
--- 48,57 ----
/// <author>Aleksandar Seovic (.NET)</author>
/// <version>$Id$</version>
! public interface ITargetSource
{
+ /// <summary>
+ /// The <see cref="System.Type"/> of the target object.
+ /// </summary>
+ Type TargetType { get; }
/// <summary>
|