This is called after initialization and starts up the PCGenFrame by setting it visible and then performing other startup actions as the user's preferences dictate.
()
| 217 | * as the user's preferences dictate. |
| 218 | */ |
| 219 | void startPCGenFrame() |
| 220 | { |
| 221 | GuiAssertions.assertIsSwingThread(); |
| 222 | setVisible(true); |
| 223 | new StartupWorker().start(); |
| 224 | } |
| 225 | |
| 226 | /** |
| 227 | * This thread does the work of starting up the UI. |
nothing calls this directly
no test coverage detected