Class View

java.lang.Object
com.storedobject.vaadin.View
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
Direct Known Subclasses:
AbstractDataForm, CalendarViewer, ConsumptionDashboard, Dashboard, GridMenu, ImageView, ImageViewer, ModuleMenu, ObjectBlockEditor, SteppedView, SystemLogViewer, SystemTableDeployer, SystemUtility, TextView, ValueChart, VerifyOTP, Viewer, WrappedView

public class View extends Object implements ExecutableView
View represents an independent piece of information (typically a "data entry form" or some information dashboard) to be displayed in the content area of the Application. View implements Runnable interface. So, it can be associated with a MenuItem. When a MenuItem is clicked, the Runnable.run() method of the view is invoked, and we say the "view is executed". When a view is executed, its component (specified using the setComponent(Component)) is displayed in the "content" area of the application.
Author:
Syam
See Also: