public static void main(String[] args) {
Display display = new Display();
Shell shell = new Shell(display);
Options options = new JOptions(shell, args);
if (!options.load()) {
return;
}
MibewTray tray = new MibewTray();
MibewAgent agent = new MibewAgent(options.getAgentOptions(), tray);
agent.launch();
tray.initTray(display, shell, agent);
while (!shell.isDisposed()) {