// {{{ Class initializer static { EditBus.addToBus( new EBComponent() { public void handleMessage(EBMessage msg) { if (msg instanceof PropertiesChanged) { synchronized (lock) { colors = null; } } } }); } // }}}
public void removeNotify() { logger.info(""); super.removeNotify(); EditBus.removeFromBus(this); }
/** **if using these without call to super,view empty! no cnsl, no cpc */ public void addNotify() { logger.info(""); super.addNotify(); EditBus.addToBus(this); }