org.aopalliance.intercept.FieldAccess |
This interface represents a field access in the program.
A field access is a joinpoint and can be intercepted by a field interceptor.
Constants | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
int | READ | The read access type (see getAccessType() ). |
|||||||||
int | WRITE | The write access type (see getAccessType() ). |
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Returns the access type.
| |||||||||||
Gets the field being accessed.
| |||||||||||
Gets the value that must be set to the field.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() |
The read access type (see getAccessType()
).
The write access type (see getAccessType()
).
Returns the access type.
Gets the field being accessed.
This method is a frienly implementation of the getStaticPart()
method (same result).
Gets the value that must be set to the field.
This value can be intercepted and changed by a field interceptor.