Hi,
is it possible to make something like this?
Component.java:
@Inject DecoratingService service;
void setupRender() {
logger.info(" I'm not the first... ");
}
DecoratingService.java :
void decorateSetupRender() {
// somehow decorate hosting component setupRender()
logger.info( " I'm the first! " );
hostingComponentSetupRender();
}
---------------------------------------------------------------------
To unsubscribe, e-mail:
users-unsubscribe@...
For additional commands, e-mail:
users-help@...