- We have to turn Widgets into Java Beans (just adding appropriate get/set methods would be enough, if I understood well)
I believe, a bean is nothing more than a regular class with a must-have empty constructor and each field accessable through getter/setter (or isXX()).
Also, having layout managers would be cool. Of course the default way of proceeding is to specify x,y coordinates and width height by hand but having a grid of objects is nevertheless something useful.
There's already support for Layout managers. The only thing is, that I didn't write any implementation so far. But I'll write (I guess) GridLayout and BorderLayout. Well, the most important ones.
Yes, could be helpful. But adding input Widgets, Lists Combo boxes ist the more important task for me. I'm currently working on them.
Marvin