super();
}
@Override
protected StringButton initWidget() {
StringButton button = super.initWidget();
// TODO virer action name; � voir
// button.setActionName("Action");
// remove actionlistener for actionPerformed not to be called automatically
button.removeActionListener(button);
// listen to the widget, useful for pressed and released notifications
button.addMouseListener(this);
return button;
}