package fucoin.gui; public interface WalletGuiControl { void setAddress(String address); void setAmount(int amount); void addKnownAddress(String address); void addLogMsg(String msg); void addTransactionLogMessage(String message); /** * Tell the GUI, that the wallet is a remote wallet. */ void setRemote(); }