1 package net.suberic.util.swing; 2 3 /** 4 * An interface which allows classes to listen to changes to Themes. 5 */ 6 public interface ThemeListener { 7 8 /** 9 * Called when the specifics of a Theme change. 10 */ 11 public void themeChanged(ConfigurableMetalTheme theme); 12 13 } 14