List of usage examples for com.vaadin.ui Component removeListener
@Deprecated public void removeListener(Component.Listener listener);
From source file:de.kaiserpfalzEdv.office.ui.web.widgets.menu.NavigationPresenter.java
License:Apache License
@SuppressWarnings("UnusedDeclaration") // called via BUS @EventBusListenerMethod(scope = EventScope.SESSION) public void removeMenu(Event<RemoveMenuEvent> event) { LOG.debug("{} received: {}", this, event); RemoveMenuEvent menu = event.getPayload(); Component removed = getView().getMenu(menu.getMenuId()); getView().removeEntry(menu.getMenuId()); removed.removeListener(this); }