package genius; import java.io.IOException; import genius.domains.DomainInstaller; import genius.gui.NegoGUIApp; public class Application { public static void main(String[] args) throws IOException { ProtocolsInstaller.run(); DomainInstaller.run(); AgentsInstaller.run(); NegoGUIApp.run(args); } }