C# Class UniAspect.Processor.Pointcut.Get

Inheritance: CodeProcessor
Afficher le fichier Open project: UnicoenProject/UniAspect

Méthodes publiques

Méthode Description
After ( UnifiedElement model, AspectElement target, UnifiedBlock advice ) : void
Around ( UnifiedElement model ) : void
Before ( UnifiedElement model, AspectElement target, UnifiedBlock advice ) : void
InsertAtAfterGet ( UnifiedElement root, Regex regex, UnifiedBlock advice ) : void

指定された変数参照の直後に、指定されたコードを共通コードモデルとして挿入します。

InsertAtAfterGetByName ( UnifiedElement root, string name, UnifiedBlock advice ) : void
InsertAtBeforeGet ( UnifiedElement root, Regex regex, UnifiedBlock advice ) : void

指定された変数参照の直前に、指定されたコードを共通コードモデルとして挿入します。

InsertAtBeforeGetByName ( UnifiedElement root, string name, UnifiedBlock advice ) : void

Method Details

After() public méthode

public After ( UnifiedElement model, AspectElement target, UnifiedBlock advice ) : void
model Unicoen.Model.UnifiedElement
target AspectElement
advice UnifiedBlock
Résultat void

Around() public méthode

public Around ( UnifiedElement model ) : void
model Unicoen.Model.UnifiedElement
Résultat void

Before() public méthode

public Before ( UnifiedElement model, AspectElement target, UnifiedBlock advice ) : void
model Unicoen.Model.UnifiedElement
target AspectElement
advice UnifiedBlock
Résultat void

InsertAtAfterGet() public static méthode

指定された変数参照の直後に、指定されたコードを共通コードモデルとして挿入します。
public static InsertAtAfterGet ( UnifiedElement root, Regex regex, UnifiedBlock advice ) : void
root Unicoen.Model.UnifiedElement コードを追加するモデルのルートノード
regex System.Text.RegularExpressions.Regex 対象変数を指定する正規表現
advice UnifiedBlock 挿入するコード断片
Résultat void

InsertAtAfterGetByName() public static méthode

public static InsertAtAfterGetByName ( UnifiedElement root, string name, UnifiedBlock advice ) : void
root Unicoen.Model.UnifiedElement
name string
advice UnifiedBlock
Résultat void

InsertAtBeforeGet() public static méthode

指定された変数参照の直前に、指定されたコードを共通コードモデルとして挿入します。
public static InsertAtBeforeGet ( UnifiedElement root, Regex regex, UnifiedBlock advice ) : void
root Unicoen.Model.UnifiedElement コードを追加するモデルのルートノード
regex System.Text.RegularExpressions.Regex 対象変数を指定する正規表現
advice UnifiedBlock 挿入するコード断片
Résultat void

InsertAtBeforeGetByName() public static méthode

public static InsertAtBeforeGetByName ( UnifiedElement root, string name, UnifiedBlock advice ) : void
root Unicoen.Model.UnifiedElement
name string
advice UnifiedBlock
Résultat void