Two things that I can't understand easily, just in the HelloWord application.
With the HelloWord demo application code following:



package wicket.examples.helloworld; import wicket.markup.html.WebPage; import wicket.markup.html.basic.Label; public class HelloWorld extends WebPage { public HelloWorld() { add(new Label("message", "Hello World!")); } }



"add" what to where?  why "add" it?
why "new" a component? Does not the components EXSIST in the markup file?
Why not "attach" it?
again, I'm a newbie of Wicket!


Another question, Tapestry 4.0 plan to remove the prefix "I" of the Name of interfaces clsss such as IRequestCycle,IPage, (rename to RequestCycle,Page, and so on).
and there is a lot of discussions on why or not do this at [email protected] (http://news.gmane.org/thread.php?group=gmane.comp.java.tapestry.user)
Maybe Wicket will do the same thing? Just before 1.0 released?



liigo, 2005-4-23



-------------------------------------------------------
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://ads.osdn.com/?ad_ide95&alloc_id396&op=click
_______________________________________________
Wicket-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/wicket-user

Reply via email to