How to get application instance from anywhere in Vaadin?

1.3k Views Asked by At

I do not create Application object explicitly and suppose Vaadin does it silently.

How can I get a reference to it?

1

There are 1 best solutions below

0
On

In Vaadin 7 is called UI. Accessible with:

UI.getCurrent();

And for your own methods in extended UI like:

((MyUI) UI.getCurrent()).getMyData();

More info in Vaadin book.