1 package org.columba.core.gui.themes.plugin; 17 18 import javax.swing.UIManager ; 19 import javax.swing.plaf.metal.DefaultMetalTheme ; 20 import javax.swing.plaf.metal.MetalLookAndFeel ; 21 22 23 29 public class MetalLookAndFeelPlugin extends AbstractThemePlugin { 30 33 public MetalLookAndFeelPlugin() { 34 super(); 35 } 36 37 40 public void setLookAndFeel() throws Exception { 41 MetalLookAndFeel.setCurrentTheme(new DefaultMetalTheme ()); 42 43 UIManager.setLookAndFeel(UIManager.getCrossPlatformLookAndFeelClassName()); 44 } 45 } 46 | Popular Tags |