Advertisement
Guest User

Untitled

a guest
Aug 3rd, 2012
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.32 KB | None | 0 0
  1. import javax.swing.UIManager;
  2.  
  3.  
  4. public class Main {
  5.  
  6.     public static void main(String[] args) {
  7.    
  8.         try {
  9.             UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
  10.         } catch (Exception e) {
  11.             throw new RuntimeException(e);
  12.         }
  13.         View interfata = new View();
  14.         new Controller(interfata);
  15.     }
  16.  
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement