IAccessor
| Kind of class: | interface |
|---|---|
| Inherits from: | none |
| Implemented by: | |
| Version: | 1.0 |
| Author: | Francis Bourre |
| Classpath: | com.bourre.core.IAccessor |
| File last modified: | Wednesday, 31 October 2007, 07:35:29 |
IAccessor defines basic rules for setter implementation.Take a look at com.bourre.core package to see IAccessor
implementations.
Summary
Instance methods
Instance methods
getGetterHelper
function getGetterHelper (
)
Returns method or property used by current getter to retrieve object value.
Returns:
String property or FunctiongetSetterHelper
function getSetterHelper (
)
Returns method or property used by current setter to modify object value.
Returns:
String property or FunctiongetTarget
function getTarget (
)
Returns object targeted by current setter.
Returns:
instance
getValue
function getValue (
)
Returns current value targeted by the setter.
Returns:
value
setValue
function setValue (
) : Void
Sets passed-in value to object using setter function defined
during concrete instanciation.
during concrete instanciation.
Parameters:
value:
value to set