Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Первая запись
- public static void main(String[] args){
- SwingUtilities.invokeLater(new Runnable() {
- @Override
- public void run() {
- new CreateUI();
- }
- });
- }
- // Вторая запись
- public static void main(String[] args) {
- new CreateUI;
- }
Advertisement
Add Comment
Please, Sign In to add comment