1 | class KunststoffLookAndFeelPlugin extends AbstractThemePlugin {↵ | | 1 | class MetouiaLookAndFeelPlugin extends AbstractThemePlugin {↵
|
|
2 | /**↵ | | 2 | /**↵
|
3 | * ↵ | | 3 | * ↵
|
4 | */↵ | | 4 | */↵
|
5 | public KunststoffLookAndFeelPlugin() {↵ | | 5 | public MetouiaLookAndFeelPlugin() {↵
|
6 | super();↵ | | 6 | super();↵
|
|
7 | }↵ | | 7 | }↵
|
|
8 | /* (non-Javadoc)↵ | | 8 | /* (non-Javadoc)↵
|
9 | * @see org.columba.core.gui.themes.plugin.AbstractThemePlugin#setLookAndFeel()↵ | | 9 | * @see org.columba.core.gui.themes.plugin.AbstractThemePlugin#setLookAndFeel()↵
|
10 | */↵ | | 10 | */↵
|
11 | public void setLookAndFeel() throws Exception {↵ | | 11 | public void setLookAndFeel() throws Exception {↵
|
|
12 | UIManager.setLookAndFeel(↵ | | 12 | UIManager.setLookAndFeel(↵
|
13 | new com.incors.plaf.kunststoff.KunststoffLookAndFeel());↵ | | 13 | new net.sourceforge.mlf.metouia.MetouiaLookAndFeel());↵
|
14 | ↵ | | 14 | ↵
|
15 | UIManager.getLookAndFeelDefaults().put("ClassLoader",getClass().getClassLoader());↵ | | 15 | UIManager.getLookAndFeelDefaults().put("ClassLoader",getClass().getClassLoader());↵
|
|
16 | } | | 16 | }
|