@Documented @Retention(value=RUNTIME) @Target(value=METHOD) public @interface AttributeSetter
The annotation must contain the full attribute qualifier which this method belongs to:
@AttributeSetter("MyType.foo")
public void setFoo(String foo)
{
// ...
}
This way event listeners observing all MyType (and their sub types) instances can be notified about the
attribute modification whenever the method is being called.public abstract String value
Copyright © 2017 SAP SE. All Rights Reserved.