| |||||||||||||||||
Source File | Conditionals | Statements | Methods | TOTAL | |||||||||||||
Seasar.Framework.Aop\IAspectWeaver.cs | - | - | - | - |
|
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 |
|