Class org.as2lib.aop.joinpoint.SetPropertyJoinPoint

????
   +--AbstractJoinPoint
      +--org.as2lib.aop.joinpoint.PropertyJoinPoint
         +--org.as2lib.aop.joinpoint.SetPropertyJoinPoint

Description

SetPropertyJoinPoint is a join point matching set access to a property. It represents the setter method of a property.

Method Index

new SetPropertyJoinPoint()

getType(), proceed()

Inherited from PropertyJoinPoint

getInfo(), snapshot(), update()

Constructor Detail

SetPropertyJoinPoint

public function SetPropertyJoinPoint(info:PropertyInfo, thiz)

Constructs a new

 SetPropertyJoinPoint) instance.
 
is null or undefined

Throws

IllegalArgumentExceptionif argument info reflects a not-writable property

Method Detail

proceed

public function proceed(args:Array)

Proceeds this join point by executing the setter of the represented property with the given arguments and returning the result of the execution.

Parameters

argsthe arguments to use for the execution

Return

the result of the execution

Specified By

proceed() in org.as2lib.aop.JoinPoint

Overrides

proceed() in org.as2lib.aop.joinpoint.PropertyJoinPoint

getType

public function getType(Void):Number

Returns the type of this property.

Return

AbstractJoinPoint#SET_PROPERTY

Specified By

getType() in org.as2lib.aop.JoinPoint

Overrides

getType() in org.as2lib.aop.joinpoint.PropertyJoinPoint