Clover.NET coverage report - Coverage for s2container.net

Coverage timestamp: 2006年5月30日 11:21:29

File Stats: LOC: 19   Methods: 0
NCLOC: 9 Classes: 1
 
Source File Conditionals Statements Methods TOTAL
Seasar.Framework.Aop\IAspectWeaver.cs - - - -
coverage
1   using System;
2   using Seasar.Framework.Container;
3  
4   namespace Seasar.Framework.Aop
5   {
6   /// <summary>
7   /// Aspectを織り込む処理を持つInterface
8   /// </summary>
9   public interface IAspectWeaver
10   {
11   /// <summary>
12   /// Aspectを織り込む
13   /// </summary>
14   /// <param name="target">Aspectを織り込む対象のオブジェクト</param>
15   /// <param name="componentDef">Aspectを織り込む対象のコンポーネント定義</param>
16   void WeaveAspect(ref object target, IComponentDef componentDef);
17   }
18   }
19