Thanks. I solved it simply by adding a second constructor to updater class as follows:
public Updater(MyGui gui) {
this.gui = gui;
}
Then passed a reference to the original MyGui...