PHP 인터페이스 Go\Aop\Intercept\FieldAccess

A field access is a joinpoint and can be intercepted by a field interceptor.
상속: extends Go\Aop\Intercept\Joinpoint
파일 보기 프로젝트 열기: goaop/framework 0 사용 예제들

공개 메소드들

메소드 설명
getAccessType ( ) : integer Returns the access type.
getField ( ) : ReflectionProperty Gets the field being accessed.
getValue ( ) : mixed Gets the current value of property by reference
getValueToSet ( ) : mixed Gets the value that must be set to the field, applicable only for WRITE access type

메소드 상세

getAccessType() 공개 메소드

Returns the access type.
public getAccessType ( ) : integer
리턴 integer

getField() 공개 메소드

Gets the field being accessed.
public getField ( ) : ReflectionProperty
리턴 ReflectionProperty the field being accessed.

getValue() 공개 메소드

Gets the current value of property by reference
public getValue ( ) : mixed
리턴 mixed

getValueToSet() 공개 메소드

Gets the value that must be set to the field, applicable only for WRITE access type
public getValueToSet ( ) : mixed
리턴 mixed