protected StringButton initWidget() {
StringButton button = super.initWidget();
// 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;
}
@Override
protected void initDAO() {