()
| 48 | } |
| 49 | |
| 50 | public static void initializeGUI() |
| 51 | { |
| 52 | DesktopHandler.initialize(); |
| 53 | pcgenFrame = new PCGenFrame(new UIContext()); |
| 54 | String className = UIManager.getSystemLookAndFeelClassName(); |
| 55 | try |
| 56 | { |
| 57 | UIManager.setLookAndFeel(className); |
| 58 | } catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException e) |
| 59 | { |
| 60 | Logging.errorPrint("system look and feel not found", e); |
| 61 | } |
| 62 | |
| 63 | } |
| 64 | |
| 65 | public static void startGUI() |
| 66 | { |
no test coverage detected