@Target(value={ANNOTATION_TYPE,METHOD})
@Retention(value=RUNTIME)
@API(status=EXPERIMENTAL,
since="1.2.4")
public @interface BeforeProperty
@BeforeProperty
to have them run once before each property including properties of
embedded containers.
@BeforeProperty
methods are inherited from superclasses
and implemented interfaces as long as they are not hidden
or overridden.
In embedded container classes the @BeforeProperty
methods
from the inner container are run after the outer container's methods.
The execution order of multiple @BeforeProperty
methods
within the same container is not guaranteed and might change.
AfterProperty