List of usage examples for com.vaadin.ui Window removeActionHandler
@Override public void removeActionHandler(Handler actionHandler)
From source file:org.opencms.ui.components.CmsBasicDialog.java
License:Open Source License
/** * Removes the action handler.<p>/*from w w w .jav a2 s . c om*/ * * @param window the window the action handler is attached to */ void clearActionHandler(Window window) { if (m_actionHandler != null) { window.removeActionHandler(m_actionHandler); } }