Example usage for com.vaadin.ui AbstractComponent removeExtension

List of usage examples for com.vaadin.ui AbstractComponent removeExtension

Introduction

In this page you can find the example usage for com.vaadin.ui AbstractComponent removeExtension.

Prototype

@Override
    public void removeExtension(Extension extension) 

Source Link

Usage

From source file:com.haulmont.cuba.web.AppUI.java

License:Apache License

public void removeTimer(CubaTimer timer) {
    AbstractComponent timersHolder = getTopLevelWindowComposition();

    timersHolder.removeExtension(timer);
}