views:

100

answers:

2

Hi,

I am developing a enterprise GWT app. FRom the many videos and web articles I have read on developing with GWT, I came across one that mentioned 3 3rd party libs that are highly recommended to use. My problem is that I cannot remember what they were or where I saw them! The most I can recall is that I think one was gwt-log where you can display you logging info on a smal div overlay in your browser. Im just wondering if anyone can help me with this, perhaps someone has seen these before or remembers the video/article I got this from.

Thanks

B

A: 

gwt-dnd (drag and drop support) is another useful API (to be found on code.google.com).

David Nouls
+1  A: 

GWT-Presenter - An implementation of the MVP pattern;

GWT-Dispatch - An implementation of the command pattern;

Google Gin - Dependency Injection based on Google's Guice;

GWT-Log - A log4j-style logger for GWT.

See example here: http://blog.hivedevelopment.co.uk/2009/08/google-web-toolkit-gwt-mvp-example.html

Eric Landry