Aiming to provide easy to use style layouts for GWT - and a series of static methods to build commonly used widgets. Geez was originally inspired by the JGoodies framework in Swing, but turned out nothing like it at all.
A taster of how to build a simple panel:
FlowPanel login = new GFlowPanel()
.id("loginPanel")
.css("login_panel")
.with(new GTextBox().id("username").text("Enter username"))
.with(new GPasswordBox().id("password"))
.with(new GButton("Login", loginListener()).id("loginButton"));NEWS 0.4 is released, allowing tabIndex to be set on all input types.
Also check out GStyle for helping out with CSS.