public void setText(String text) {
this.description.setText(text);
}
public void onWindowResized(int width, int height) {
new DelayedRunnable(333) {
public void run() {
final int width = Window.getClientWidth();
getWidget().setPixelSize(Math.max(width / 3, WIDTH), HEIGHT);
center();
}