| Modifier and Type | Interface and Description |
|---|---|
interface |
ComponentConnector
An interface used by client-side widgets or paintable parts to receive
updates from the corresponding server-side components in the form of
UIDL. |
interface |
DirectionalManagedLayout |
interface |
HasChildMeasurementHintConnector
Connector with layout measuring hint.
|
interface |
HasComponentsConnector
An interface used by client-side connectors whose widget is a component
container (implements
HasWidgets). |
| Modifier and Type | Class and Description |
|---|---|
class |
JavaScriptExtension |
| Modifier and Type | Method and Description |
|---|---|
ServerConnector |
WidgetSet.createConnector(int tag,
ApplicationConfiguration conf)
Create an uninitialized connector that best matches given UIDL.
|
ServerConnector |
ConnectorMap.getConnector(String connectorId)
Returns a
ServerConnector by its id |
ServerConnector |
ApplicationConnection.getConnector(String connectorId,
int connectorType)
Get either an existing ComponentConnector or create a new
ComponentConnector with the given type and id.
|
ServerConnector |
UIDL.getPaintableAttribute(String name,
ApplicationConnection connection)
Gets the Paintable with the id found in the named attributes's value.
|
ServerConnector |
UIDL.getPaintableVariable(String name,
ApplicationConnection connection)
Gets the Paintable with the id found in the named variable's value.
|
ServerConnector |
ServerConnector.getParent()
Returns the parent of this connector.
|
| Modifier and Type | Method and Description |
|---|---|
List<ServerConnector> |
ServerConnector.getChildren()
Returns the child connectors for this connector (child components and
extensions).
|
Class<? extends ServerConnector> |
ApplicationConfiguration.getConnectorClassByEncodedTag(int tag) |
Collection<? extends ServerConnector> |
ConnectorMap.getConnectors()
Deprecated.
As of 7.0.1, use
ConnectorMap.getConnectorsAsJsArray() for
improved performance. |
JsArrayObject<ServerConnector> |
ConnectorMap.getConnectorsAsJsArray() |
protected Class<? extends ServerConnector> |
WidgetSet.resolveConnectorType(int tag,
ApplicationConfiguration conf) |
| Modifier and Type | Method and Description |
|---|---|
protected void |
JavaScriptExtension.extend(ServerConnector target) |
static String |
Util.getConnectorString(ServerConnector p) |
void |
ConnectorMap.registerConnector(String id,
ServerConnector connector) |
void |
ConnectorHierarchyChangeEvent.setConnector(ServerConnector connector) |
void |
ServerConnector.setParent(ServerConnector parent)
Sets the parent for this connector.
|
void |
ConnectorMap.unregisterConnector(ServerConnector connector)
Unregisters the given connector; always use after removing a connector.
|
void |
ApplicationConnection.unregisterPaintable(ServerConnector p)
Deprecated.
As of 7.0. No longer serves any purpose.
|
void |
ApplicationConnection.updateVariable(String paintableId,
String variableName,
ServerConnector newValue,
boolean immediate)
Sends a new value for the given paintables given variable to the server.
|
| Modifier and Type | Method and Description |
|---|---|
void |
ServerConnector.setChildren(List<ServerConnector> children)
Sets the children for this connector.
|
| Constructor and Description |
|---|
JavaScriptConnectorHelper(ServerConnector connector) |
| Modifier and Type | Method and Description |
|---|---|
ServerConnector |
AbstractServerConnectorEvent.getConnector() |
| Modifier and Type | Method and Description |
|---|---|
void |
RpcManager.applyInvocation(MethodInvocation invocation,
ServerConnector connector)
Perform server to client RPC invocation.
|
static <T extends ServerRpc> |
RpcProxy.create(Class<T> rpcInterface,
ServerConnector connector) |
void |
AbstractServerConnectorEvent.setConnector(ServerConnector connector) |
| Constructor and Description |
|---|
StateChangeEvent(ServerConnector connector,
FastStringSet changedProperties)
Deprecated.
As of 7.0.2, use
StateChangeEvent.StateChangeEvent(ServerConnector, JsonObject, boolean)
instead for improved performance. |
StateChangeEvent(ServerConnector connector,
elemental.json.JsonObject stateJson,
boolean initialStateChange)
/** Creates a new state change event.
|
StateChangeEvent(ServerConnector connector,
Set<String> changedPropertiesSet)
Deprecated.
As of 7.0.1, use
StateChangeEvent.StateChangeEvent(ServerConnector, JsonObject, boolean)
instead for improved performance. |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractRendererConnector<T>
An abstract base class for renderer connectors.
|
class |
AbstractSelectionModelConnector<T extends SelectionModel<elemental.json.JsonObject>>
Base class for all selection model connectors.
|
class |
ButtonRendererConnector
A connector for
ButtonRenderer. |
class |
ClickableRendererConnector<T>
An abstract base class for
ClickableRenderer connectors. |
class |
DateRendererConnector
A connector for
DateRenderer. |
class |
DetailComponentManagerConnector
Client-side connector for the DetailComponentManager of Grid.
|
class |
GridConnector
Connects the client side
Grid widget with the server side
components.grid.Grid component. |
class |
ImageRendererConnector
A connector for
ImageRenderer. |
class |
JavaScriptRendererConnector
Connector for server-side renderer implemented using JavaScript.
|
class |
MultiSelectionModelConnector
Connector for server-side
MultiSelectionModelConnector.MultiSelectionModel. |
class |
NoSelectionModelConnector
Connector for server-side
Grid.NoSelectionModel. |
class |
NumberRendererConnector
A connector for
NumberRenderer . |
class |
ProgressBarRendererConnector
A connector for
ProgressBarRenderer. |
class |
RpcDataSourceConnector
Connects a Vaadin server-side container data source to a Grid.
|
class |
SingleSelectionModelConnector
Connector for server-side
SingleSelectionModelConnector.SingleSelectionModel. |
class |
TextRendererConnector
A connector for
TextRenderer. |
class |
UnsafeHtmlRendererConnector
A connector for
UnsafeHtmlRendererConnector.UnsafeHtmlRenderer |
| Modifier and Type | Method and Description |
|---|---|
protected void |
NoSelectionModelConnector.extend(ServerConnector target) |
protected void |
SingleSelectionModelConnector.extend(ServerConnector target) |
protected void |
DetailComponentManagerConnector.extend(ServerConnector target) |
protected void |
AbstractRendererConnector.extend(ServerConnector target)
Deprecated.
|
protected void |
RpcDataSourceConnector.extend(ServerConnector target) |
protected void |
MultiSelectionModelConnector.extend(ServerConnector target) |
| Modifier and Type | Method and Description |
|---|---|
void |
SelectConnectorListener.select(ServerConnector connector,
com.google.gwt.dom.client.Element element)
Listener method called when a connector has been selected.
|
void |
ConnectorInfoPanel.update(ServerConnector connector)
Update the panel to show information about a connector.
|
| Constructor and Description |
|---|
SelectorPath(ServerConnector c,
com.google.gwt.dom.client.Element e) |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractExtensionConnector |
class |
BrowserWindowOpenerConnector
Client-side code for
BrowserWindowOpener |
class |
FileDownloaderConnector |
class |
ResponsiveConnector
The client side connector for the Responsive extension.
|
| Modifier and Type | Method and Description |
|---|---|
protected void |
ResponsiveConnector.extend(ServerConnector target) |
protected void |
FileDownloaderConnector.extend(ServerConnector target) |
protected void |
BrowserWindowOpenerConnector.extend(ServerConnector target) |
protected abstract void |
AbstractExtensionConnector.extend(ServerConnector target)
Called when the extension is attached to its parent.
|
void |
FileDownloaderConnector.setParent(ServerConnector parent) |
void |
AbstractExtensionConnector.setParent(ServerConnector parent) |
| Modifier and Type | Class and Description |
|---|---|
class |
JavaScriptManagerConnector |
| Modifier and Type | Method and Description |
|---|---|
protected void |
JavaScriptManagerConnector.extend(ServerConnector target) |
| Modifier and Type | Interface and Description |
|---|---|
interface |
ManagedLayout |
static interface |
ShortcutActionHandler.BeforeShortcutActionListener
A focusable
ComponentConnector implementing this interface will
be notified before shortcut actions are handled if it will be the target
of the action (most commonly means it is the focused component during the
keyboard combination is triggered by the user). |
interface |
SimpleManagedLayout |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractComponentConnector |
class |
AbstractComponentContainerConnector
Client side connector for subclasses of AbstractComponentConnector.
|
class |
AbstractConnector
An abstract implementation of Connector.
|
class |
AbstractFieldConnector |
class |
AbstractHasComponentsConnector |
class |
AbstractLayoutConnector |
class |
AbstractSingleComponentContainerConnector
Client side connector for subclasses of AbstractSingleComponentConnector.
|
class |
JavaScriptComponentConnector |
class |
LegacyConnector
Deprecated.
This class is only intended to ease migration and should not be
used for new projects.
|
class |
MediaBaseConnector |
class |
UnknownComponentConnector |
class |
UnknownExtensionConnector
Connector used as a placeholder for extensions that are not present in the
widgetset.
|
| Modifier and Type | Method and Description |
|---|---|
ServerConnector |
AbstractConnector.getParent() |
| Modifier and Type | Method and Description |
|---|---|
List<ServerConnector> |
AbstractConnector.getChildren() |
| Modifier and Type | Method and Description |
|---|---|
protected void |
UnknownExtensionConnector.extend(ServerConnector target) |
static Type |
AbstractConnector.getStateType(ServerConnector connector) |
void |
AbstractConnector.setParent(ServerConnector parent) |
| Modifier and Type | Method and Description |
|---|---|
void |
AbstractConnector.setChildren(List<ServerConnector> children) |
| Modifier and Type | Class and Description |
|---|---|
class |
AbsoluteLayoutConnector
Connects the server side
AbsoluteLayout with the client side
counterpart VAbsoluteLayout |
| Modifier and Type | Class and Description |
|---|---|
class |
AccordionConnector |
| Modifier and Type | Class and Description |
|---|---|
class |
AudioConnector |
| Modifier and Type | Class and Description |
|---|---|
class |
BrowserFrameConnector |
| Modifier and Type | Class and Description |
|---|---|
class |
ButtonConnector |
| Modifier and Type | Class and Description |
|---|---|
class |
CalendarConnector
Handles communication between Calendar on the server side and
VCalendar on the client side. |
| Modifier and Type | Class and Description |
|---|---|
class |
CheckBoxConnector |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractColorPickerConnector
An abstract class that defines default implementation for a color picker
connector.
|
class |
ColorPickerAreaConnector
A class that defines an implementation for a color picker connector.
|
class |
ColorPickerConnector
A class that defines default implementation for a color picker connector.
|
class |
ColorPickerGradientConnector
A class that defines the default implementation for a color picker gradient
connector.
|
class |
ColorPickerGridConnector
A class that defines the default implementation for a color picker grid
connector.
|
| Modifier and Type | Class and Description |
|---|---|
class |
ComboBoxConnector |
| Modifier and Type | Class and Description |
|---|---|
class |
CssLayoutConnector
Connects the server side widget
CssLayout with the client side
counterpart VCssLayout |
| Modifier and Type | Class and Description |
|---|---|
class |
CustomComponentConnector |
| Modifier and Type | Class and Description |
|---|---|
class |
CustomFieldConnector |
| Modifier and Type | Class and Description |
|---|---|
class |
CustomLayoutConnector |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractDateFieldConnector |
class |
DateFieldConnector |
class |
InlineDateFieldConnector |
class |
PopupDateFieldConnector |
class |
TextualDateConnector |
| Modifier and Type | Class and Description |
|---|---|
class |
DragAndDropWrapperConnector |
| Modifier and Type | Class and Description |
|---|---|
class |
EmbeddedConnector |
| Modifier and Type | Class and Description |
|---|---|
class |
FlashConnector |
| Modifier and Type | Class and Description |
|---|---|
class |
FormConnector |
| Modifier and Type | Class and Description |
|---|---|
class |
FormLayoutConnector |
| Modifier and Type | Class and Description |
|---|---|
class |
GridLayoutConnector |
| Modifier and Type | Class and Description |
|---|---|
class |
ImageConnector |
| Modifier and Type | Class and Description |
|---|---|
class |
LabelConnector |
| Modifier and Type | Interface and Description |
|---|---|
interface |
MayScrollChildren |
| Modifier and Type | Class and Description |
|---|---|
class |
LinkConnector |
| Modifier and Type | Class and Description |
|---|---|
class |
ListSelectConnector |
| Modifier and Type | Class and Description |
|---|---|
class |
LoginFormConnector |
| Modifier and Type | Class and Description |
|---|---|
class |
MenuBarConnector |
| Modifier and Type | Class and Description |
|---|---|
class |
NativeButtonConnector |
| Modifier and Type | Class and Description |
|---|---|
class |
NativeSelectConnector |
| Modifier and Type | Class and Description |
|---|---|
class |
OptionGroupBaseConnector |
class |
OptionGroupConnector |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractOrderedLayoutConnector
Base class for vertical and horizontal ordered layouts
|
class |
HorizontalLayoutConnector
Connects the client widget
VHorizontalLayout with the Vaadin server
side counterpart HorizontalLayout |
class |
VerticalLayoutConnector
Connects the client widget
VVerticalLayout with the Vaadin server
side counterpart VerticalLayout |
| Modifier and Type | Class and Description |
|---|---|
class |
PanelConnector |
| Modifier and Type | Class and Description |
|---|---|
class |
PasswordFieldConnector |
| Modifier and Type | Class and Description |
|---|---|
class |
PopupViewConnector |
| Modifier and Type | Class and Description |
|---|---|
class |
ProgressBarConnector
Connector for
VProgressBar. |
class |
ProgressIndicatorConnector
Deprecated.
as of 7.1, use
ProgressBarConnector combined with server
push or UI polling. |
| Modifier and Type | Class and Description |
|---|---|
class |
RichTextAreaConnector |
| Modifier and Type | Class and Description |
|---|---|
class |
SliderConnector |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractSplitPanelConnector |
class |
HorizontalSplitPanelConnector |
class |
VerticalSplitPanelConnector |
| Modifier and Type | Class and Description |
|---|---|
class |
TableConnector |
| Modifier and Type | Class and Description |
|---|---|
class |
TabsheetBaseConnector |
class |
TabsheetConnector |
| Modifier and Type | Class and Description |
|---|---|
class |
TextAreaConnector |
| Modifier and Type | Class and Description |
|---|---|
class |
TextFieldConnector |
| Modifier and Type | Class and Description |
|---|---|
class |
TreeConnector |
| Modifier and Type | Class and Description |
|---|---|
class |
TreeTableConnector |
| Modifier and Type | Class and Description |
|---|---|
class |
TwinColSelectConnector |
| Modifier and Type | Class and Description |
|---|---|
class |
UIConnector |
| Modifier and Type | Method and Description |
|---|---|
void |
UIConnector.showServerDebugInfo(ServerConnector serverConnector)
Sends a request to the server to print details to console that will help
the developer to locate the corresponding server-side connector in the
source code.
|
void |
UIConnector.showServerDesign(ServerConnector connector)
Sends a request to the server to print a design to the console for the
given component.
|
| Modifier and Type | Class and Description |
|---|---|
class |
UploadConnector |
| Modifier and Type | Class and Description |
|---|---|
class |
VideoConnector |
| Modifier and Type | Class and Description |
|---|---|
class |
WindowConnector |
Copyright © 2016 Vaadin Ltd. All rights reserved.