* @see org.olat.core.gui.control.DefaultController#event(org.olat.core.gui.UserRequest, org.olat.core.gui.components.Component, org.olat.core.gui.control.Event)
*/
public void event(UserRequest ureq, Component source, Event event) {
if (source == tabbedPane) { // those must be links
TabbedPaneChangedEvent tbcEvent = (TabbedPaneChangedEvent)event;
Component newComponent = tbcEvent.getNewComponent();
if (newComponent == cachePanel) {
if (cacheController != null) {
cacheController.dispose();
}
cacheController = new AllCachesController(ureq, getWindowControl());