I’ve read about Command pattern, and how to implement it in GWT.
So, I’ve found gwt-dispatch api, but, i don’t know how to use it. The examples from the wiki don’t work.
Is better I implement my own simple Action/Result interfaces and my own commands, or someone have a example that works with dispatch?
thanks in advance.
Use GWT-Platform ( http://code.google.com/p/gwt-platform/ )
It’s complex MVP framework and has it’s own good dispatch implementation, manual here:
http://code.google.com/p/gwt-platform/wiki/GettingStartedDispatch
related question: gwt-dispatch – command pattern alternative for GWT