I need help/tips with general application architecture

2012-02-08 Thread divStar
Hello, I've been using GWT for about two years now. In this period I've rewritten major parts of my application a few times. However: as I implement more and more stuff into it, I lose overview and sometimes am dazzled by the complexity my application has reached. It's not that the application is

Re: I need help/tips with general application architecture

2012-02-08 Thread Stefan Ollinger
Hello, i took a quick look over your code. You should definitely try out UiBinder. This will make code like this much easier: https://code.google.com/p/odrop/source/browse/trunk/ODropServer/src/odrop/client/pages/login/Login.java Also MVP could be interesting to you. It decouples the widget

Re: I need help/tips with general application architecture

2012-02-08 Thread divStar
Thank you very much for the latter link - I just finished reading this wonderful article. But - if I'm not mistaken - according to this suffering-oriented programming I did the right thing: I collected a set of use-cases (in my particular case: the ItemListener, NPCListener and Belongings, which

Re: I need help/tips with general application architecture

2012-02-08 Thread Stefan Ollinger
Hello, UiBinder saves you from manually creating the widget hierarchy. You can also hack the css directly into the .ui.xml files, which is a great time saver and also reduces the amount of code used in the widgets. I did make positive experience with HTMLPanel, which reduces the markup in the