Uses of Interface
com.vaadin.client.ComponentConnector
-
-
Uses of ComponentConnector in com.vaadin.client
Subinterfaces of ComponentConnector in com.vaadin.client Modifier and Type Interface Description interfaceDirectionalManagedLayoutMethods in com.vaadin.client with type parameters of type ComponentConnector Modifier and Type Method Description static <T extends ComponentConnector & com.google.gwt.event.dom.client.BlurHandler>
com.google.gwt.event.shared.HandlerRegistrationEventHelper. updateBlurHandler(T connector, com.google.gwt.event.shared.HandlerRegistration handlerRegistration)Adds or removes a blur handler depending on if the connector has blur listeners on the server side or not.static <T extends ComponentConnector & com.google.gwt.event.dom.client.BlurHandler>
com.google.gwt.event.shared.HandlerRegistrationEventHelper. updateBlurHandler(T connector, com.google.gwt.event.shared.HandlerRegistration handlerRegistration, com.google.gwt.user.client.ui.Widget widget)Adds or removes a blur handler depending on if the connector has blur listeners on the server side or not.static <T extends ComponentConnector & com.google.gwt.event.dom.client.FocusHandler>
com.google.gwt.event.shared.HandlerRegistrationEventHelper. updateFocusHandler(T connector, com.google.gwt.event.shared.HandlerRegistration handlerRegistration)Adds or removes a focus handler depending on if the connector has focus listeners on the server side or not.static <T extends ComponentConnector & com.google.gwt.event.dom.client.FocusHandler>
com.google.gwt.event.shared.HandlerRegistrationEventHelper. updateFocusHandler(T connector, com.google.gwt.event.shared.HandlerRegistration handlerRegistration, com.google.gwt.user.client.ui.Widget widget)Adds or removes a focus handler depending on if the connector has focus listeners on the server side or not.Methods in com.vaadin.client that return ComponentConnector Modifier and Type Method Description static ComponentConnectorUtil. findConnectorFor(com.google.gwt.user.client.ui.Widget widget)static ComponentConnectorUtil. findPaintable(ApplicationConnection client, com.google.gwt.dom.client.Element element)Helper method to find the nearest parent paintable instance by traversing the DOM upwards from given element.ComponentConnector[]ConnectorMap. getComponentConnectors()Deprecated.As of 7.0.1, useConnectorMap.getComponentConnectorsAsJsArray()for better performance.ComponentConnectorConnectorMap. getConnector(com.google.gwt.dom.client.Element element)Returns aComponentConnectorelement by its root element.ComponentConnectorConnectorMap. getConnector(com.google.gwt.user.client.ui.Widget widget)Retrieves the connector whose widget matches the parameter.static ComponentConnectorUtil. getConnectorForElement(ApplicationConnection client, com.google.gwt.user.client.ui.Widget parent, com.google.gwt.dom.client.Element element)Locates the nested child component ofparent which contains the elementelement .ComponentConnectorVCaption. getOwner()Returns Paintable for which this Caption belongs to.ComponentConnectorApplicationConnection. getPaintable(UIDL uidl)Deprecated.ComponentConnectorVCaptionWrapper. getWrappedConnector()Methods in com.vaadin.client that return types with arguments of type ComponentConnector Modifier and Type Method Description List<ComponentConnector>HasComponentsConnector. getChildComponents()Returns the child components for this connector.JsArrayObject<ComponentConnector>ConnectorMap. getComponentConnectorsAsJsArray()List<ComponentConnector>ConnectorHierarchyChangeEvent. getOldChildren()Returns a collection of the old children for the connector.Methods in com.vaadin.client with parameters of type ComponentConnector Modifier and Type Method Description booleanApplicationConnection. hasEventListeners(ComponentConnector connector, String eventIdentifier)Deprecated.As of 7.0.static booleanVCaption. isNeeded(ComponentConnector connector)voidLayoutManager. reportHeightAssignedToRelative(ComponentConnector component, int assignedHeight)Registers the height reserved for a relatively sized component.voidLayoutManager. reportOuterHeight(ComponentConnector component, int outerHeight)Registers the outer height (including margins, borders and paddings) of a component.voidLayoutManager. reportOuterWidth(ComponentConnector component, int outerWidth)Registers the outer width (including margins, borders and paddings) of a component.voidLayoutManager. reportWidthAssignedToRelative(ComponentConnector component, int assignedWidth)Registers the width reserved for a relatively sized component.voidLayoutManager. setNeedsMeasure(ComponentConnector component)Informs this LayoutManager that the size of a component might have changed.voidLayoutManager. setNeedsMeasureRecursively(ComponentConnector component)Informs this LayoutManager that some sizes in a component hierarchy might have changed.static booleanUtil. shouldSkipMeasurementOfConnector(ComponentConnector candidate)Test if we can can skip measuring this connector.static booleanUtil. shouldSkipMeasurementOfConnector(ComponentConnector candidate, ComponentConnector parent)Test if we can can skip measuring this connector.voidHasComponentsConnector. updateCaption(ComponentConnector connector)Update child components caption, description and error message.static <H extends com.google.gwt.event.shared.EventHandler>
com.google.gwt.event.shared.HandlerRegistrationEventHelper. updateHandler(ComponentConnector connector, H handler, String eventIdentifier, com.google.gwt.event.shared.HandlerRegistration handlerRegistration, com.google.gwt.event.dom.client.DomEvent.Type<H> type, com.google.gwt.user.client.ui.Widget widget)static <H extends com.google.gwt.event.shared.EventHandler,W extends com.google.gwt.user.client.ui.Widget>
com.google.gwt.event.shared.HandlerRegistrationEventHelper. updateHandler(ComponentConnector connector, String eventIdentifier, com.google.gwt.event.shared.HandlerRegistration handlerRegistration, Supplier<com.google.gwt.event.shared.HandlerRegistration> handlerProvider)Updates handler registered usinghandlerProvider: removes it if connector doesn't have anymoreeventIdentifierusing providedhandlerRegistrationand adds it via providedhandlerProviderif connector has event listener witheventIdentifier.Method parameters in com.vaadin.client with type arguments of type ComponentConnector Modifier and Type Method Description voidHasComponentsConnector. setChildComponents(List<ComponentConnector> children)Sets the children for this connector.voidConnectorHierarchyChangeEvent. setOldChildren(List<ComponentConnector> oldChildren)Sets the collection of the old children for the connector.Constructors in com.vaadin.client with parameters of type ComponentConnector Constructor Description VCaption(ComponentConnector component, ApplicationConnection client)Creates a caption for aComponentConnector.VCaptionWrapper(ComponentConnector toBeWrapped, ApplicationConnection client)Creates a new caption wrapper panel. -
Uses of ComponentConnector in com.vaadin.client.connectors
Classes in com.vaadin.client.connectors that implement ComponentConnector Modifier and Type Class Description classAbstractFocusableListingConnector<WIDGET extends com.google.gwt.user.client.ui.Widget & com.google.gwt.event.dom.client.HasAllFocusHandlers>Abstract class for listing widget connectors that contains focusable children to track their focus/blur events.classAbstractListingConnectorA base connector class forAbstractListing.classAbstractMultiSelectConnectorA base connector class for multiselects.classAbstractSingleSelectConnector<WIDGET extends com.google.gwt.user.client.ui.Widget & com.google.gwt.event.dom.client.HasAllFocusHandlers>An abstract class for single selection connectors. -
Uses of ComponentConnector in com.vaadin.client.connectors.grid
Classes in com.vaadin.client.connectors.grid that implement ComponentConnector Modifier and Type Class Description classGridConnectorA connector class for the typed Grid component.Methods in com.vaadin.client.connectors.grid that return types with arguments of type ComponentConnector Modifier and Type Method Description List<ComponentConnector>GridConnector. getChildComponents()Methods in com.vaadin.client.connectors.grid with parameters of type ComponentConnector Modifier and Type Method Description voidGridConnector. updateCaption(ComponentConnector connector)Method parameters in com.vaadin.client.connectors.grid with type arguments of type ComponentConnector Modifier and Type Method Description voidGridConnector. setChildComponents(List<ComponentConnector> children) -
Uses of ComponentConnector in com.vaadin.client.debug.internal
Methods in com.vaadin.client.debug.internal with parameters of type ComponentConnector Modifier and Type Method Description voidHierarchySection.FindHandler. onHover(ComponentConnector connector)Called when the user hovers over a connector, which is highlighted.voidHierarchySection.FindHandler. onSelected(ComponentConnector connector)Called when the user clicks on a highlighted connector. -
Uses of ComponentConnector in com.vaadin.client.ui
Subinterfaces of ComponentConnector in com.vaadin.client.ui Modifier and Type Interface Description interfaceHasErrorIndicatorImplemented by connectors supporting an error indicator.interfaceHasRequiredIndicatorImplemented by connectors supporting a required flag.interfaceManagedLayoutinterfaceSimpleManagedLayoutClasses in com.vaadin.client.ui that implement ComponentConnector Modifier and Type Class Description classAbstractComponentConnectorBase class for component connectors.classAbstractComponentContainerConnectorClient side connector for subclasses of AbstractComponentConnector.classAbstractFieldConnectorBase class for field connectors.classAbstractHasComponentsConnectorBase class for component connectors whose widget is a component container.classAbstractLayoutConnectorBase class for layout connectors.classAbstractSingleComponentContainerConnectorClient side connector for subclasses of AbstractSingleComponentConnector.classJavaScriptComponentConnectorA connector class for JavaScript components.classLegacyConnectorDeprecated.This class is only intended to ease migration and should not be used for new projects.classMediaBaseConnectorBase class for media component connectors.classUnknownComponentConnectorA placeholder connector class for when a component's connector cannot be determined.Fields in com.vaadin.client.ui declared as ComponentConnector Modifier and Type Field Description protected ComponentConnectorAbstractClickEventHandler. connectorMethods in com.vaadin.client.ui that return ComponentConnector Modifier and Type Method Description protected ComponentConnectorLayoutClickEventHandler. getChildComponent(com.google.gwt.dom.client.NativeEvent event)protected abstract ComponentConnectorLayoutClickEventHandler. getChildComponent(com.google.gwt.user.client.Element element)ComponentConnectorVGridLayout. getComponent(com.google.gwt.dom.client.Element element)Returns the deepest nested child component which contains "element".ComponentConnectorVGridLayout. getComponent(com.google.gwt.user.client.Element element)Deprecated.As of 7.2, call or overrideVGridLayout.getComponent(Element)insteadComponentConnectorVDragAndDropWrapper.CustomDropHandler. getConnector()ComponentConnectorVDragAndDropWrapper. getConnector()protected ComponentConnectorVTabsheetBase. getConnectorForWidget(com.google.gwt.user.client.ui.Widget widget)For internal use only.protected ComponentConnectorAbstractSingleComponentContainerConnector. getContent()Returns the content (only/first child) of the container.ComponentConnectorVFormLayout.Caption. getOwner()Returns Paintable for which this Caption belongs to.ComponentConnectorVFormLayout.ErrorFlag. getOwner()ComponentConnectorVAccordion. getTab(int index)ComponentConnectorVTabsheet. getTab(int index)abstract ComponentConnectorVTabsheetBase. getTab(int index)Implement in extending classes.Methods in com.vaadin.client.ui that return types with arguments of type ComponentConnector Modifier and Type Method Description List<ComponentConnector>AbstractHasComponentsConnector. getChildComponents()Methods in com.vaadin.client.ui with parameters of type ComponentConnector Modifier and Type Method Description booleanVAccordion.StackItem. contains(ComponentConnector p)Deprecated.This method is not called by the framework code anymore.voidShortcutActionHandler. handleKeyboardEvent(com.google.gwt.user.client.Event event, ComponentConnector target)voidVGridLayout.Cell. setComponent(ComponentConnector component, List<ComponentConnector> ordering)voidVPopupView.CustomPopup. setPopupConnector(ComponentConnector newPopupComponent)Sets the connector of the popup content widget.voidVCustomLayout. updateCaption(ComponentConnector childConnector)Update caption for the given child connector.Method parameters in com.vaadin.client.ui with type arguments of type ComponentConnector Modifier and Type Method Description voidAbstractHasComponentsConnector. setChildComponents(List<ComponentConnector> childComponents)voidVGridLayout.Cell. setComponent(ComponentConnector component, List<ComponentConnector> ordering)Constructors in com.vaadin.client.ui with parameters of type ComponentConnector Constructor Description AbstractClickEventHandler(ComponentConnector connector, String clickEventIdentifier)Caption(ComponentConnector component)ClickEventHandler(ComponentConnector connector)ClickEventHandler(ComponentConnector connector, String clickEventIdentifier)ErrorFlag(ComponentConnector owner)LayoutClickEventHandler(ComponentConnector connector)LayoutClickEventHandler(ComponentConnector connector, String clickEventIdentifier) -
Uses of ComponentConnector in com.vaadin.client.ui.absolutelayout
Classes in com.vaadin.client.ui.absolutelayout that implement ComponentConnector Modifier and Type Class Description classAbsoluteLayoutConnectorConnects the server sideAbsoluteLayoutwith the client side counterpartVAbsoluteLayout.Methods in com.vaadin.client.ui.absolutelayout that return ComponentConnector Modifier and Type Method Description protected ComponentConnectorAbsoluteLayoutConnector. getConnectorForElement(com.google.gwt.dom.client.Element element)Returns the deepest nested child component which contains "element".protected ComponentConnectorAbsoluteLayoutConnector. getConnectorForElement(com.google.gwt.user.client.Element element)Deprecated.As of 7.2, call or overrideAbsoluteLayoutConnector.getConnectorForElement(Element)insteadMethods in com.vaadin.client.ui.absolutelayout with parameters of type ComponentConnector Modifier and Type Method Description voidAbsoluteLayoutConnector. updateCaption(ComponentConnector childConnector) -
Uses of ComponentConnector in com.vaadin.client.ui.accordion
Classes in com.vaadin.client.ui.accordion that implement ComponentConnector Modifier and Type Class Description classAccordionConnectorA connector class for the Accordion component.Methods in com.vaadin.client.ui.accordion with parameters of type ComponentConnector Modifier and Type Method Description voidAccordionConnector. updateCaption(ComponentConnector component) -
Uses of ComponentConnector in com.vaadin.client.ui.audio
Classes in com.vaadin.client.ui.audio that implement ComponentConnector Modifier and Type Class Description classAudioConnectorA connector class for the Audio component. -
Uses of ComponentConnector in com.vaadin.client.ui.browserframe
Classes in com.vaadin.client.ui.browserframe that implement ComponentConnector Modifier and Type Class Description classBrowserFrameConnectorA connector class for the BrowserFrame component. -
Uses of ComponentConnector in com.vaadin.client.ui.button
Classes in com.vaadin.client.ui.button that implement ComponentConnector Modifier and Type Class Description classButtonConnectorA connector class for the Button component. -
Uses of ComponentConnector in com.vaadin.client.ui.checkbox
Classes in com.vaadin.client.ui.checkbox that implement ComponentConnector Modifier and Type Class Description classCheckBoxConnectorThe client-side connector for theCheckBoxGroupcomponent. -
Uses of ComponentConnector in com.vaadin.client.ui.colorpicker
Classes in com.vaadin.client.ui.colorpicker that implement ComponentConnector Modifier and Type Class Description classAbstractColorPickerConnectorAn abstract class that defines default implementation for a color picker connector.classColorPickerAreaConnectorA class that defines an implementation for a color picker connector.classColorPickerConnectorA class that defines default implementation for a color picker connector.classColorPickerGradientConnectorA class that defines the default implementation for a color picker gradient connector.classColorPickerGridConnectorA class that defines the default implementation for a color picker grid connector. -
Uses of ComponentConnector in com.vaadin.client.ui.combobox
Classes in com.vaadin.client.ui.combobox that implement ComponentConnector Modifier and Type Class Description classComboBoxConnectorA connector class for the ComboBox component. -
Uses of ComponentConnector in com.vaadin.client.ui.composite
Classes in com.vaadin.client.ui.composite that implement ComponentConnector Modifier and Type Class Description classCompositeConnectorConnector for the Composite component.Methods in com.vaadin.client.ui.composite with parameters of type ComponentConnector Modifier and Type Method Description voidCompositeConnector. updateCaption(ComponentConnector component) -
Uses of ComponentConnector in com.vaadin.client.ui.csslayout
Classes in com.vaadin.client.ui.csslayout that implement ComponentConnector Modifier and Type Class Description classCssLayoutConnectorConnects the server side widgetCssLayoutwith the client side counterpartVCssLayout.Methods in com.vaadin.client.ui.csslayout with parameters of type ComponentConnector Modifier and Type Method Description voidCssLayoutConnector. updateCaption(ComponentConnector child) -
Uses of ComponentConnector in com.vaadin.client.ui.customcomponent
Classes in com.vaadin.client.ui.customcomponent that implement ComponentConnector Modifier and Type Class Description classCustomComponentConnectorA connector class for the CustomComponent component base.Methods in com.vaadin.client.ui.customcomponent with parameters of type ComponentConnector Modifier and Type Method Description voidCustomComponentConnector. updateCaption(ComponentConnector component) -
Uses of ComponentConnector in com.vaadin.client.ui.customfield
Classes in com.vaadin.client.ui.customfield that implement ComponentConnector Modifier and Type Class Description classCustomFieldConnectorA connector class for the CustomField component.Methods in com.vaadin.client.ui.customfield that return ComponentConnector Modifier and Type Method Description protected ComponentConnectorCustomFieldConnector. getContent()Returns the content (only/first child) of the container.Methods in com.vaadin.client.ui.customfield that return types with arguments of type ComponentConnector Modifier and Type Method Description List<ComponentConnector>CustomFieldConnector. getChildComponents()Methods in com.vaadin.client.ui.customfield with parameters of type ComponentConnector Modifier and Type Method Description voidCustomFieldConnector. updateCaption(ComponentConnector connector)Method parameters in com.vaadin.client.ui.customfield with type arguments of type ComponentConnector Modifier and Type Method Description voidCustomFieldConnector. setChildComponents(List<ComponentConnector> childComponents) -
Uses of ComponentConnector in com.vaadin.client.ui.customlayout
Classes in com.vaadin.client.ui.customlayout that implement ComponentConnector Modifier and Type Class Description classCustomLayoutConnectorA connector class for CustomLayout.Methods in com.vaadin.client.ui.customlayout with parameters of type ComponentConnector Modifier and Type Method Description voidCustomLayoutConnector. updateCaption(ComponentConnector paintable) -
Uses of ComponentConnector in com.vaadin.client.ui.datefield
Classes in com.vaadin.client.ui.datefield that implement ComponentConnector Modifier and Type Class Description classAbstractDateFieldConnector<R extends Enum<R>>Base class for various DateField connectors.classAbstractInlineDateFieldConnector<PANEL extends VAbstractCalendarPanel<R>,R extends Enum<R>>Base class for inline data field connector.classAbstractTextualDateConnector<R extends Enum<R>>Abstract base class for date fields with textual date representation.classDateFieldConnectorA connector class for the abstract AbstractLocalDateField component.classDateTimeFieldConnectorThe client-side connector for AbstractLocalDateTimeField.classInlineDateFieldConnectorThe client-side connector for InlineDateField.classInlineDateTimeFieldConnectorThe client-side connector for InlineDateTimeField.classPopupDateFieldConnectorThe client-side connector for DateField.classPopupDateTimeFieldConnectorThe client-side connector for DateTimeField.classTextualDateConnector<PANEL extends VAbstractCalendarPanel<R>,R extends Enum<R>>Abstract date/time field connector which extendAbstractTextualDateConnectorfunctionality with widget that shows date/time chooser as a popup panel. -
Uses of ComponentConnector in com.vaadin.client.ui.dd
Methods in com.vaadin.client.ui.dd that return ComponentConnector Modifier and Type Method Description abstract ComponentConnectorVAbstractDropHandler. getConnector()Deprecated.Returns the Paintable who owns thisVAbstractDropHandler.ComponentConnectorVDropHandler. getConnector()Deprecated.Returns the ComponentConnector with which this DropHandler is associated.ComponentConnectorVTransferable. getDragSource()Deprecated.Returns the component from which the transferable is created (e.g. a tree which node is dragged).Methods in com.vaadin.client.ui.dd with parameters of type ComponentConnector Modifier and Type Method Description voidVTransferable. setDragSource(ComponentConnector component)Deprecated.Sets the component currently being dragged or from which the transferable is created (e.g. a tree which node is dragged). -
Uses of ComponentConnector in com.vaadin.client.ui.draganddropwrapper
Classes in com.vaadin.client.ui.draganddropwrapper that implement ComponentConnector Modifier and Type Class Description classDragAndDropWrapperConnectorDeprecated.Replaced in 8.1 withDragSourceExtensionConnectorandDropTargetExtensionConnector. -
Uses of ComponentConnector in com.vaadin.client.ui.embedded
Classes in com.vaadin.client.ui.embedded that implement ComponentConnector Modifier and Type Class Description classEmbeddedConnectorA connector class for the Embedded component. -
Uses of ComponentConnector in com.vaadin.client.ui.formlayout
Classes in com.vaadin.client.ui.formlayout that implement ComponentConnector Modifier and Type Class Description classFormLayoutConnectorA connector class for FormLayout.Methods in com.vaadin.client.ui.formlayout with parameters of type ComponentConnector Modifier and Type Method Description voidFormLayoutConnector. updateCaption(ComponentConnector component) -
Uses of ComponentConnector in com.vaadin.client.ui.gridlayout
Classes in com.vaadin.client.ui.gridlayout that implement ComponentConnector Modifier and Type Class Description classGridLayoutConnectorA connector class for the GridLayout component.Methods in com.vaadin.client.ui.gridlayout with parameters of type ComponentConnector Modifier and Type Method Description voidGridLayoutConnector. updateCaption(ComponentConnector childConnector) -
Uses of ComponentConnector in com.vaadin.client.ui.image
Classes in com.vaadin.client.ui.image that implement ComponentConnector Modifier and Type Class Description classImageConnectorA connector class for the Image component. -
Uses of ComponentConnector in com.vaadin.client.ui.label
Classes in com.vaadin.client.ui.label that implement ComponentConnector Modifier and Type Class Description classLabelConnectorA connector class for the Label component. -
Uses of ComponentConnector in com.vaadin.client.ui.layout
Methods in com.vaadin.client.ui.layout that return ComponentConnector Modifier and Type Method Description ComponentConnectorComponentConnectorLayoutSlot. getChild()Returns the connector of the child component that has been assigned to this slot.ComponentConnectorLayoutDependencyTree. getScrollingBoundary(ComponentConnector connector)Returns the scrolling boundary for this component.Methods in com.vaadin.client.ui.layout that return types with arguments of type ComponentConnector Modifier and Type Method Description Collection<ComponentConnector>LayoutDependencyTree. getMeasureTargets()Deprecated.As of 7.0.1, useLayoutDependencyTree.getMeasureTargetsJsArray()for improved performance.Methods in com.vaadin.client.ui.layout with parameters of type ComponentConnector Modifier and Type Method Description ComponentConnectorLayoutDependencyTree. getScrollingBoundary(ComponentConnector connector)Returns the scrolling boundary for this component.voidLayoutDependencyTree. logDependencyStatus(ComponentConnector connector)Logs horizontal and verticalLayoutDependencyTree.LayoutDependencystate for the given connector.voidLayoutDependencyTree. markHeightAsChanged(ComponentConnector connector)Marks the component's height as changed.voidLayoutDependencyTree. markWidthAsChanged(ComponentConnector connector)Marks the component's width as changed.booleanLayoutDependencyTree. noMoreChangesExpected(ComponentConnector connector)Returns whether all required layouting and measuring has been done for this component to both directions and there are no more blockers waiting for handling.voidLayoutDependencyTree. setNeedsHorizontalMeasure(ComponentConnector connector, boolean needsMeasure)Informs this LayoutDependencyTree that the horizontal size of a component might have changed and it needs measuring, or that the measuring is no longer necessary.voidLayoutDependencyTree. setNeedsMeasure(ComponentConnector connector, boolean needsMeasure)Informs this LayoutDependencyTree that the size of a component might have changed and it needs measuring in both directions, or that the measuring is no longer necessary.voidLayoutDependencyTree. setNeedsVerticalMeasure(ComponentConnector connector, boolean needsMeasure)Informs this LayoutDependencyTree that the vertical size of a component might have changed and it needs measuring, or that the measuring is no longer necessary.Constructors in com.vaadin.client.ui.layout with parameters of type ComponentConnector Constructor Description ComponentConnectorLayoutSlot(String baseClassName, ComponentConnector child, ManagedLayout layout)Constructs a slot instance for a ManagedLayout cell. -
Uses of ComponentConnector in com.vaadin.client.ui.link
Classes in com.vaadin.client.ui.link that implement ComponentConnector Modifier and Type Class Description classLinkConnectorA connector class for the Link component. -
Uses of ComponentConnector in com.vaadin.client.ui.listselect
Classes in com.vaadin.client.ui.listselect that implement ComponentConnector Modifier and Type Class Description classListSelectConnectorClient side connector forListSelectcomponent. -
Uses of ComponentConnector in com.vaadin.client.ui.loginform
Classes in com.vaadin.client.ui.loginform that implement ComponentConnector Modifier and Type Class Description classLoginFormConnectorA connector class for the LoginForm component.Methods in com.vaadin.client.ui.loginform with parameters of type ComponentConnector Modifier and Type Method Description voidLoginFormConnector. updateCaption(ComponentConnector connector) -
Uses of ComponentConnector in com.vaadin.client.ui.menubar
Classes in com.vaadin.client.ui.menubar that implement ComponentConnector Modifier and Type Class Description classMenuBarConnectorA connector class for the MenuBar component. -
Uses of ComponentConnector in com.vaadin.client.ui.nativebutton
Classes in com.vaadin.client.ui.nativebutton that implement ComponentConnector Modifier and Type Class Description classNativeButtonConnectorA connector class for the NativeButton component. -
Uses of ComponentConnector in com.vaadin.client.ui.nativeselect
Classes in com.vaadin.client.ui.nativeselect that implement ComponentConnector Modifier and Type Class Description classNativeSelectConnectorThe client-side connector for theNativeSelectcomponent. -
Uses of ComponentConnector in com.vaadin.client.ui.optiongroup
Classes in com.vaadin.client.ui.optiongroup that implement ComponentConnector Modifier and Type Class Description classCheckBoxGroupConnectorCheckBoxGroup client side connector.classRadioButtonGroupConnectorCheckBoxGroup client side connector. -
Uses of ComponentConnector in com.vaadin.client.ui.orderedlayout
Classes in com.vaadin.client.ui.orderedlayout that implement ComponentConnector Modifier and Type Class Description classAbstractOrderedLayoutConnectorBase class for vertical and horizontal ordered layouts.classHorizontalLayoutConnectorConnects the client widgetVHorizontalLayoutwith the Vaadin server side counterpartHorizontalLayout.classVerticalLayoutConnectorConnects the client widgetVVerticalLayoutwith the Vaadin server side counterpartVerticalLayout.Methods in com.vaadin.client.ui.orderedlayout with parameters of type ComponentConnector Modifier and Type Method Description voidAbstractOrderedLayoutConnector. updateCaption(ComponentConnector connector) -
Uses of ComponentConnector in com.vaadin.client.ui.panel
Classes in com.vaadin.client.ui.panel that implement ComponentConnector Modifier and Type Class Description classPanelConnectorA connector class for the Panel component.Methods in com.vaadin.client.ui.panel with parameters of type ComponentConnector Modifier and Type Method Description voidPanelConnector. updateCaption(ComponentConnector component) -
Uses of ComponentConnector in com.vaadin.client.ui.passwordfield
Classes in com.vaadin.client.ui.passwordfield that implement ComponentConnector Modifier and Type Class Description classPasswordFieldConnectorA connector class for the PasswordField component. -
Uses of ComponentConnector in com.vaadin.client.ui.popupview
Classes in com.vaadin.client.ui.popupview that implement ComponentConnector Modifier and Type Class Description classPopupViewConnectorA connector class for the PopupView component.Methods in com.vaadin.client.ui.popupview with parameters of type ComponentConnector Modifier and Type Method Description voidPopupViewConnector. updateCaption(ComponentConnector childConnector) -
Uses of ComponentConnector in com.vaadin.client.ui.progressbar
Classes in com.vaadin.client.ui.progressbar that implement ComponentConnector Modifier and Type Class Description classProgressBarConnectorConnector forVProgressBar. -
Uses of ComponentConnector in com.vaadin.client.ui.richtextarea
Classes in com.vaadin.client.ui.richtextarea that implement ComponentConnector Modifier and Type Class Description classRichTextAreaConnectorConnector for RichTextArea. -
Uses of ComponentConnector in com.vaadin.client.ui.slider
Classes in com.vaadin.client.ui.slider that implement ComponentConnector Modifier and Type Class Description classSliderConnectorA connector class for the Slider component. -
Uses of ComponentConnector in com.vaadin.client.ui.splitpanel
Classes in com.vaadin.client.ui.splitpanel that implement ComponentConnector Modifier and Type Class Description classAbstractSplitPanelConnectorAn abstract connector class for the SplitPanel components.classHorizontalSplitPanelConnectorA connector class for the HorizontalSplitPanel component.classVerticalSplitPanelConnectorA connector class for the VerticalSplitPanel component.Methods in com.vaadin.client.ui.splitpanel with parameters of type ComponentConnector Modifier and Type Method Description voidAbstractSplitPanelConnector. updateCaption(ComponentConnector component) -
Uses of ComponentConnector in com.vaadin.client.ui.tabsheet
Classes in com.vaadin.client.ui.tabsheet that implement ComponentConnector Modifier and Type Class Description classTabsheetBaseConnectorAn abstract connector class for components that share features with a TabSheet.classTabsheetConnectorA connector class for the TabSheet component.Methods in com.vaadin.client.ui.tabsheet with parameters of type ComponentConnector Modifier and Type Method Description voidTabsheetConnector. updateCaption(ComponentConnector component) -
Uses of ComponentConnector in com.vaadin.client.ui.textarea
Classes in com.vaadin.client.ui.textarea that implement ComponentConnector Modifier and Type Class Description classTextAreaConnectorA connector class for the TextArea component. -
Uses of ComponentConnector in com.vaadin.client.ui.textfield
Subinterfaces of ComponentConnector in com.vaadin.client.ui.textfield Modifier and Type Interface Description static interfaceValueChangeHandler.OwnerMust be implemented by any user of a ValueChangeHandler.Classes in com.vaadin.client.ui.textfield that implement ComponentConnector Modifier and Type Class Description classAbstractTextFieldConnectorConnector class for AbstractTextField.classTextFieldConnectorConnector class for TextField. -
Uses of ComponentConnector in com.vaadin.client.ui.treegrid
Classes in com.vaadin.client.ui.treegrid that implement ComponentConnector Modifier and Type Class Description classTreeGridConnectorA connector class for the TreeGrid component. -
Uses of ComponentConnector in com.vaadin.client.ui.twincolselect
Classes in com.vaadin.client.ui.twincolselect that implement ComponentConnector Modifier and Type Class Description classTwinColSelectConnectorClient side connector forTwinColSelectcomponent. -
Uses of ComponentConnector in com.vaadin.client.ui.ui
Classes in com.vaadin.client.ui.ui that implement ComponentConnector Modifier and Type Class Description classUIConnectorA connector class for the UI component.Methods in com.vaadin.client.ui.ui that return ComponentConnector Modifier and Type Method Description protected ComponentConnectorUIConnector. getContent()Methods in com.vaadin.client.ui.ui with parameters of type ComponentConnector Modifier and Type Method Description voidUIConnector. scrollIntoView(ComponentConnector componentConnector)Tries to scroll the viewport so that the given connector is in view.voidUIConnector. updateCaption(ComponentConnector component) -
Uses of ComponentConnector in com.vaadin.client.ui.upload
Classes in com.vaadin.client.ui.upload that implement ComponentConnector Modifier and Type Class Description classUploadConnectorA connector class for the Upload component. -
Uses of ComponentConnector in com.vaadin.client.ui.video
Classes in com.vaadin.client.ui.video that implement ComponentConnector Modifier and Type Class Description classVideoConnectorA connector class for the Video component. -
Uses of ComponentConnector in com.vaadin.client.ui.window
Classes in com.vaadin.client.ui.window that implement ComponentConnector Modifier and Type Class Description classWindowConnectorA connector class for the Window component.Methods in com.vaadin.client.ui.window with parameters of type ComponentConnector Modifier and Type Method Description voidWindowConnector. updateCaption(ComponentConnector component)
-