The problem I have is related to this issue:
https://issues.apache.org/jira/browse/WICKET-5988. Maybe the solution is
much more simple than I think.
On 01/10/2015 14:02, Martin Grigorov wrote:
Hi,
On Thu, Oct 1, 2015 at 12:51 PM, andrea del bene <[email protected]>
wrote:
Hi,
the method in the mail object is declared as final. This makes difficult
to perform custom actions AFTER component has been fully initialized (i.e.
onInitialized has been already called). Am I missing something? Should we
change code as suggested to give the chance to implement such post-init
actions?
Actually #onInitialize() is about post-init actions. Init actions
themselves are presumed to be in the constructor.
It sounds like you need #onAfterInitialize(). Then someone else will ask
for #onAfterAfterInitialize() and so on...
Thank you.
Andrea.