Annotation Interface SupportsPushAnnotations


@Documented @Target(METHOD) @Retention(RUNTIME) public @interface SupportsPushAnnotations
Annotation (java) that can be used by Subtypable items to enable/disable support for pushing annotations (BASE) to parent items. See ItemSubtype.getPushAnnotations(). The annotation should be put on the Subtypable.getItemSubtype() method. Example:
@Override
@SupportsPushAnnotations
public ItemSubtype getItemSubtype()
{
...
}
Since:
3.1
Author:
Nicklas
Last modified
$Date$