package ui; import ui.Options; public interface Iface { //private Options ifaceOpts; //Effect: Redraw the whole interface //Modify: This //Require: Running thread of initialized Iface, data backend public void redraw(); //Effect: Close all windows and disable all output //Modify: This //Require: Running thread of initialized Iface public void destory(); }