1 package org.columba.core.gui.themes.plugin; 2 3 import javax.swing.UIManager ; 4 import javax.swing.UnsupportedLookAndFeelException ; 5 6 public class QuaquaLookAndFeelPlugin extends AbstractThemePlugin { 7 8 @Override  9 public void setLookAndFeel() throws Exception { 10 11 try { 13 UIManager 14 .setLookAndFeel("ch.randelshofer.quaqua.QuaquaLookAndFeel"); 15 17 } catch (Exception e) { 18 System.err.println("error while setting Quaqua L&F"); 19 e.printStackTrace(); 20 } 21 } 22 23 } 24 | Popular Tags |