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