1 package org.columba.core.gui.themes.plugin; 17 18 import javax.swing.UIManager ; 19 20 23 public class MacLookAndFeelPlugin extends AbstractThemePlugin { 24 27 public MacLookAndFeelPlugin() { 28 super(); 29 } 30 31 34 public void setLookAndFeel() throws Exception { 35 36 try { 37 UIManager.setLookAndFeel("apple.laf.AquaLookAndFeel"); 39 40 } catch (Exception e) { 41 System.out.println("Something went wrong setting Aqua LookAndFeel"); 42 e.printStackTrace(); 43 } 44 } 45 } 46 | Popular Tags |