> pulic interface IOnComponentRenderListener
> {
>     void onComponentRender(Component, ComponentTag)
> }

That could work. Kind of AOP-ish. It potentially breaks encapsulation,
but that's with anything AOP-ish I guess.

We should define whether the call back comes before or after the
rendering, and maybe in that respect, this interface would be more
useful:

pulic interface IOnComponentRenderListener {

    void beginComponentRender(Component, ComponentTag)

    void beginComponentRender(Component, ComponentTag)
 }

I can see advantages in this. But we should think about it a bit
because it means opening up more. What do others think?

Eelco

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Wicket-develop mailing list
Wicket-develop@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-develop

Reply via email to