As a continuation of this question about Scala @BeanProperty generating change events: what is required to fully implement the behavior that annotates the var field using some custom annotation (like @Property) generates the code needed to trigger property change events? The only way to do this is to write a compiler plugin, right?
More generally: is there a standard way (for example, in Java) for processing annotations in the compiler in Scala?
source
share