Example usage for com.vaadin.ui Window removeActionHandler

List of usage examples for com.vaadin.ui Window removeActionHandler

Introduction

In this page you can find the example usage for com.vaadin.ui Window removeActionHandler.

Prototype

@Override
    public void removeActionHandler(Handler actionHandler) 

Source Link

Usage

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);
    }
}