We use cookies to serve our customers and website visitors in the best possible way. Cookies are used for the proper functioning of the website and for improving the user experience, monitoring visitor traffic and marketing purposes. By continuing to browse the site, you agree to our use of cookies. You can read more about cookies here.
com.vaadin.ui.
Interface Window.WindowModeChangeListener
-
All Superinterfaces:
Enclosing class:
public static interface Window.WindowModeChangeListener extends Serializable
An interface used for listening to Window maximize / restore events. Add the WindowModeChangeListener to a window and
WindowModeChangeListener#windowModeChanged(WindowModeChangeEvent)
will be called whenever the window is maximized (WindowMode.MAXIMIZED
) or restored (WindowMode.NORMAL
).
-
-
Field Summary
Fields Modifier and Type Field and Description static Method
windowModeChangeMethod
-
Method Summary
All Methods Modifier and Type Method and Description void
windowModeChanged(Window.WindowModeChangeEvent event)
Called when the user maximizes / restores a window.
-
-
-
Field Detail
-
windowModeChangeMethod
static final Method windowModeChangeMethod
-
-
Method Detail
-
windowModeChanged
void windowModeChanged(Window.WindowModeChangeEvent event)
Called when the user maximizes / restores a window. Use
Window.WindowModeChangeEvent.getWindow()
to get a reference to theWindow
that was maximized / restored. UseWindow.WindowModeChangeEvent.getWindowMode()
to get a reference to the new state.Parameters:
event
-
-
-