GWT MVP Pattern There is a ton of hype about the Model, View and Presenter (or MVP for short) pattern on the GWT forums and tutorial sites. Unfortunately, there is just as much confusion about the GWT MVP Pattern as there is discussion. The trick to this pattern is realizing that there really is nothing [...]
GWT MVP, Activities and Places Confusion As people start to dig into the real meat of GWT, they usually find themselves scratching their head about how to design their application. All of the tutorials about GWT give good introduction applications to give a general idea of the concepts, but that is where they usually leave [...]
History and Theory of GIN Several years ago, the Google Brainiacs delivered a dependency injection framework called Guice. The idea behind Guice is to let the framework create all of your dependencies and you simply tell it what types of objects you would like to have to do your job. The Guice system will [...]
GWT AutoBeans Where GWT AutoBeans Started GWT has created an awesome framework called AutoBeans. It was originally created to be part of the backing to the GWT RequestFactory change management. The basics is that given an interface that extends ValueProxy which represents a bean (using the typical getters and setters), AutoBeans does the actual creation [...]
GWT Timer Example From time to time, you will run into situations that you need to kick off some code sometime in the future or on a recurring basis. The folks that have been writing JavaScript code have been doing this for years, but what is the CORRECT way to do this in GWT? You [...]
This may seem like a simple GWT Tutorial but I have been asked several times how to install the GWT Eclipse Plugin. I think part of the confusion is that there are two installs that you can use. This shows how to install the kitchen sink plugin so you can do all the really cool [...]
GWT UIBinder Basic Concepts This GWT Tutorial is regarding the basics of the GWT UIBinder technology. If there is one thing that I can warn you about using this tool it would be to not over complicate it. It can seem to be much more than it really is. You can take a look at [...]
GWT UIBinder overview This GWT Tutorial is an overview of a technology that is worth strongly looking at. One of the newer tools that the GWT developers have released is its GWT UIBinder. This is a surprisingly powerful, yet simplistic piece of software to learn. The challenge that I have found with showing other developers [...]