Tag Archive

GWT MVP Pattern

Published on September 5, 2012 By Jeff Richley

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

Published on August 15, 2012 By Jeff Richley

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 [...]

GWT GIN and Dependency Injection

Published on April 9, 2012 By Jeff Richley

  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 [...]

Using GWT Autobeans in JUnit Tests

Published on April 2, 2012 By Jeff Richley

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

Published on March 28, 2012 By Jeff Richley

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 [...]

Installing the GWT Eclipse Plugin in 6 Easy Steps

Published on November 11, 2011 By Jeff Richley

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 Basics

Published on November 9, 2011 By Jeff Richley

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 [...]

What is GWT UIBinder?

Published on November 5, 2011 By Jeff Richley

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 [...]