Package com.storedobject.vaadin
Class WrappedView
java.lang.Object
com.storedobject.vaadin.View
com.storedobject.vaadin.WrappedView
- All Implemented Interfaces:
ClickHandler
,ExecutableView
,ValueChangeHandler
,com.vaadin.flow.component.ComponentEventListener<com.vaadin.flow.component.ClickEvent<? extends com.vaadin.flow.component.Component>>
,com.vaadin.flow.component.HasValue.ValueChangeListener
,Serializable
,Runnable
,EventListener
A
View
that is wrapped in an ExecutableView
.
The ExecutableView
's ExecutableView.getView(boolean)
can return such a wrapped view.
However, any Component
may be used inside, and it is not necessary to use anything that really
implements ExecutableView
.- Author:
- Syam
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from interface com.storedobject.vaadin.ClickHandler
ClickHandler.ModifiedClickEvent<C extends com.vaadin.flow.component.Component>
-
Constructor Summary
ConstructorsConstructorDescriptionWrappedView
(com.vaadin.flow.component.Component executableView) Constructor.WrappedView
(com.vaadin.flow.component.Component executableView, String caption) Constructor. -
Method Summary
Modifier and TypeMethodDescriptionvoid
abort()
Abort this view.void
clean()
Close resources if any that are left opened.void
Clear all alters owned by this view.void
close()
Close this view.createMenuItem
(Runnable menuAction) Create the menu item for this view.Get the name of the icon to be displayed in the menu when this view is active (running).boolean
Check if this view is closeable or not.boolean
Check if this view is a "Home View" or not.void
returnedFrom
(View parent) This method is invoked whenever this view is automatically selected because its parent was closed.Methods inherited from class com.storedobject.vaadin.View
aborted, addClosedListener, addOpenedListener, createCloseableView, createWindow, decorateComponent, execute, execute, execute, executing, focus, focus, focusAny, getApplication, getCaption, getComponent, getContent, getCreatedBy, getEmbeddedView, getMenuItem, getMenuItem, getView, initUI, invoke, isFullScreen, isScrollable, isWindowMode, select, setCaption, setComponent, setCreatedBy, setDefaultPadding, setEmbeddedView, setFirstFocus, setFullScreen, setScrollable, setWindowMode, skipFirstFocus
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.storedobject.vaadin.ClickHandler
clicked, doubleClicked, onComponentEvent, rightClicked
Methods inherited from interface com.storedobject.vaadin.ExecutableView
clicked, error, getView, log, log, message, run, setClickable, speak, trackValueChange, tray, valueChanged, warning
Methods inherited from interface com.storedobject.vaadin.ValueChangeHandler
valueChanged
-
Constructor Details
-
WrappedView
public WrappedView(com.vaadin.flow.component.Component executableView) Constructor.- Parameters:
executableView
- TheExecutableView
component. (It can be a normalComponent
too).
-
WrappedView
Constructor.- Parameters:
executableView
- TheExecutableView
component. (It can be a normalComponent
too).caption
- Caption for the view.
-
-
Method Details
-
isCloseable
public boolean isCloseable()Description copied from interface:ExecutableView
Check if this view is closeable or not. If closeable, a "closeable" menu item will be created byExecutableView.getMenuItem(Runnable)
. This is checked only once when the "menu item" is created.- Returns:
- True if closeable. By default, a view is closeable if it implements
CloseableView
or its internal component (View.getComponent()
) implementsCloseableView
.
-
isHomeView
public boolean isHomeView()Description copied from interface:ExecutableView
Check if this view is a "Home View" or not. A "Home View" will not show any menu when it gets executed. Typically, views that show background images or some sort of dashboards can be defined as "Home Views" so that they will always appear on the content portion of theApplication
.- Returns:
- True if this view is a "Home View". By default, if a view implements
HomeView
or its internal component (View.getComponent()
) implementsHomeView
, this method returntrue
.
-
returnedFrom
Description copied from interface:ExecutableView
This method is invoked whenever this view is automatically selected because its parent was closed.- Parameters:
parent
- Parent view that was closed
-
close
public void close()Description copied from class:View
Close this view.- Specified by:
close
in interfaceExecutableView
- Overrides:
close
in classView
-
abort
public void abort()Description copied from class:View
Abort this view. Default implementation sets an "abort flag" and closes the view.- Specified by:
abort
in interfaceExecutableView
- Overrides:
abort
in classView
-
clean
public void clean()Description copied from class:View
Close resources if any that are left opened. This method is invoked when the view is removed from theApplication
. The default implementation does nothing.- Specified by:
clean
in interfaceExecutableView
- Overrides:
clean
in classView
-
getMenuIconName
Description copied from interface:ExecutableView
Get the name of the icon to be displayed in the menu when this view is active (running).- Returns:
- Default implementation takes this value from
ApplicationEnvironment.getActiveMenuIconName()
.
-
createMenuItem
Description copied from interface:ExecutableView
Create the menu item for this view. This will be invoked byExecutableView.getMenuItem(Runnable)
. By default, this invokesApplicationEnvironment.createMenuItem(ExecutableView, String, Runnable)
to create the menu item.- Parameters:
menuAction
- Action for the menu item to be created- Returns:
- Menu item.
-
clearAlerts
public void clearAlerts()Description copied from interface:ExecutableView
Clear all alters owned by this view.
-