Class HelpView
java.lang.Object
com.vaadin.flow.component.Component
com.vaadin.flow.component.Composite<com.vaadin.flow.component.orderedlayout.VerticalLayout>
com.decs.application.views.information.HelpView
- All Implemented Interfaces:
com.vaadin.flow.component.AttachNotifier,com.vaadin.flow.component.DetachNotifier,com.vaadin.flow.component.HasElement,com.vaadin.flow.component.HasStyle,Serializable
@Route(value="help",
layout=MainLayout.class)
@Uses(com.vaadin.flow.component.icon.Icon.class)
public class HelpView
extends com.vaadin.flow.component.Composite<com.vaadin.flow.component.orderedlayout.VerticalLayout>
Help View Class
This class implements the web application help page. It is responsible for all visual components and their behavior.
- Version:
- 1.0
- Author:
- Bruno Guiomar
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate com.vaadin.flow.component.tabs.TabSheetprivate com.vaadin.flow.component.orderedlayout.VerticalLayoutprivate com.vaadin.flow.component.html.Paragraphprivate com.vaadin.flow.component.html.Paragraphprivate com.vaadin.flow.component.html.Paragraph -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprivate voidBuilds the main help section viewprivate com.vaadin.flow.component.orderedlayout.VerticalLayoutBuilds the job dashboard section of the help viewprivate com.vaadin.flow.component.orderedlayout.VerticalLayoutBuilds the node manager section of the help viewprivate com.vaadin.flow.component.orderedlayout.VerticalLayoutBuilds the problem editor section of the help viewMethods inherited from class com.vaadin.flow.component.Composite
getChildren, getContent, getElement, initContentMethods inherited from class com.vaadin.flow.component.Component
addListener, findAncestor, fireEvent, from, get, getEventBus, getId, getListeners, getLocale, getParent, getTranslation, getTranslation, getTranslation, getTranslation, getTranslation, getTranslation, getUI, hasListener, isAttached, isTemplateMapped, isVisible, onAttach, onDetach, onEnabledStateChanged, removeFromParent, scrollIntoView, scrollIntoView, set, setElement, setId, setVisibleMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface com.vaadin.flow.component.AttachNotifier
addAttachListenerMethods inherited from interface com.vaadin.flow.component.DetachNotifier
addDetachListenerMethods inherited from interface com.vaadin.flow.component.HasStyle
addClassName, addClassNames, getClassName, getClassNames, getStyle, hasClassName, removeClassName, removeClassNames, setClassName, setClassName
-
Field Details
-
helpLayoutGroup
private com.vaadin.flow.component.orderedlayout.VerticalLayout helpLayoutGroup -
guideTabSheet
private com.vaadin.flow.component.tabs.TabSheet guideTabSheet -
jobDashboardGuide
private com.vaadin.flow.component.html.Paragraph jobDashboardGuide -
nodeManagerGuide
private com.vaadin.flow.component.html.Paragraph nodeManagerGuide -
problemEditorGuide
private com.vaadin.flow.component.html.Paragraph problemEditorGuide
-
-
Constructor Details
-
HelpView
public HelpView()Class Constructor
-
-
Method Details
-
createHelpSection
private void createHelpSection()Builds the main help section view -
createJobDashboardGuide
private com.vaadin.flow.component.orderedlayout.VerticalLayout createJobDashboardGuide()Builds the job dashboard section of the help view- Returns:
- Layout of the section
-
createNodeManagerGuide
private com.vaadin.flow.component.orderedlayout.VerticalLayout createNodeManagerGuide()Builds the node manager section of the help view- Returns:
- Layout of the section
-
createProblemEditorGuide
private com.vaadin.flow.component.orderedlayout.VerticalLayout createProblemEditorGuide()Builds the problem editor section of the help view- Returns:
- Layout of the section
-