/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package netukar.tinybrowser; import javax.swing.UIManager; /** * * @author Radovan Netuka */ public class Main { /** * @param args the command line arguments */ public static void main(String[] args) { try { UIManager.setLookAndFeel("com.sun.java.swing.plaf.nimbus.NimbusLookAndFeel"); } catch (Exception ex) { } Application.run(); } }