Example usage for com.vaadin.ui Button removeClickListener

List of usage examples for com.vaadin.ui Button removeClickListener

Introduction

In this page you can find the example usage for com.vaadin.ui Button removeClickListener.

Prototype

@Deprecated
public void removeClickListener(ClickListener listener) 

Source Link

Document

Removes the button click listener.

Usage

From source file:org.lunifera.runtime.web.vaadin.databinding.model.internal.ButtonClickListener.java

License:Open Source License

protected void doRemoveFrom(Object source) {
    if (source instanceof Button) {
        Button notifier = (Button) source;
        notifier.removeClickListener(this);
    }/*from w  w  w  .  j  ava2s . c  o m*/
}