Package com.storedobject.vaadin
Interface ResizedListener
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
An interface to monitor resizing of the browser page of the
Application or its content.
See Application.addBrowserResizedListener(ResizedListener).
See Application.addContentResizedListener(ResizedListener)- Author:
- Syam
-
Method Summary
Modifier and TypeMethodDescriptionvoidresized(int width, int height) Invoked whenever there is a change in the size.
-
Method Details
-
resized
void resized(int width, int height) Invoked whenever there is a change in the size.- Parameters:
width- Widthheight- Height
-