1 package org.columba.core.gui.themes.plugin; 17 18 import javax.swing.UIManager ; 19 20 21 27 public class MotifLookAndFeelPlugin extends AbstractThemePlugin { 28 31 public MotifLookAndFeelPlugin() { 32 super(); 33 } 34 35 38 public void setLookAndFeel() throws Exception { 39 UIManager.setLookAndFeel( 40 "com.sun.java.swing.plaf.motif.MotifLookAndFeel"); 41 } 42 } 43 | Popular Tags |