(String[] args)
| 176 | |
| 177 | |
| 178 | static public void main(String[] args) { |
| 179 | Platform.init(); |
| 180 | |
| 181 | EventQueue.invokeLater(new Runnable() { |
| 182 | public void run() { |
| 183 | try { |
| 184 | new Welcome(null, true); |
| 185 | } catch (IOException e) { |
| 186 | e.printStackTrace(); |
| 187 | } |
| 188 | } |
| 189 | }); |
| 190 | } |
| 191 | } |