Class org.as2lib.aop.advice.DynamicBeforeAdvice

org.as2lib.core.BasicClass
   +--org.as2lib.aop.advice.AbstractAdvice
      +--org.as2lib.aop.advice.AbstractBeforeAdvice
         +--org.as2lib.aop.advice.DynamicBeforeAdvice

Implemented Interfaces

BeforeAdvice

Description

DynamicBeforeAdvice executes a callback at the weave-in point.

Field Index

Inherited from AbstractAdvice

AFTER, AFTER_RETURNING, AFTER_THROWING, AROUND, BEFORE

Method Index

new DynamicBeforeAdvice()

execute()

Inherited from AbstractAdvice

captures(), getAspect(), getPointcut(), getProxy()

Inherited from BasicClass

toString()

Constructor Detail

DynamicBeforeAdvice

public function DynamicBeforeAdvice()

Method Detail

execute

public function execute(joinPoint:JoinPoint, args:Array):Void

Executes the callback passing the passed joinPoint and args.

Parameters

joinPointthe join point the advice was woven into
argsthe arguments passed to the join point

Specified By

execute() in org.as2lib.aop.advice.BeforeAdvice