public Message(String title, String text, String buttonLabel) {
super(getWidth(text, title)+4, getHeight(text)+7,true,title);
DefaultLayoutManager manager = (DefaultLayoutManager)getRootPanel().getLayoutManager();
_label = new Label(text);
_button = new Button(buttonLabel);
_title = title;
_button.addListener(this);