Wicket is a lot about subclassing Components and thus adding functionality. The whole component tree is set-up like that. In order to extend Cell's functionality, it is obvious to extend Cell. In my case I want alternating row colors of html table. I used HtmlTagModifier and AttributeModifier, but the most intuitiv and Wicket-like implementation is to subclass Cell.handleComponentTag(). But because Cell is final, I can not do it.
Regards Juergen -----Urspr�ngliche Nachricht----- Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von Johan Compagner Gesendet: Montag, 22. November 2004 12:25 An: [EMAIL PROTECTED] Betreff: Re: [Wicket-develop] remove final from Cell To use 'Jonathan's way' Why do you want to override that tag? Juergen Donnerstag wrote: >I'd like to override Cell.handleComponentTag() in my application. Any >objections against removing final from Cell? > >regards >Juergen > > >------------------------------------------------------- >This SF.Net email is sponsored by: InterSystems CACHE FREE OODBMS >DOWNLOAD - A multidimensional database that combines robust object and >relational technologies, making it a perfect match for Java, C++,COM, >XML, ODBC and JDBC. www.intersystems.com/match8 >_______________________________________________ >Wicket-develop mailing list >[EMAIL PROTECTED] >https://lists.sourceforge.net/lists/listinfo/wicket-develop > > > > ------------------------------------------------------- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Discover which products truly live up to the hype. Start reading now. http://productguide.itmanagersjournal.com/ _______________________________________________ Wicket-develop mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/wicket-develop ------------------------------------------------------- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Discover which products truly live up to the hype. Start reading now. http://productguide.itmanagersjournal.com/ _______________________________________________ Wicket-develop mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/wicket-develop
