We use cookies to serve our customers and website visitors in the best possible way. Cookies are used for the proper functioning of the website and for improving the user experience, monitoring visitor traffic and marketing purposes. By continuing to browse the site, you agree to our use of cookies. You can read more about cookies here.
com.vaadin.client.
Class WidgetSet
- java.lang.Object
-
- com.vaadin.client.WidgetSet
-
public class WidgetSet extends Object
-
-
Constructor Summary
Constructors Constructor Description WidgetSet()
-
Method Summary
All Methods Modifier and Type Method Description ServerConnector
createConnector(int tag, ApplicationConfiguration conf)
Create an uninitialized connector that best matches given UIDL.
void
ensureConnectorLoaded(int tag, ApplicationConfiguration conf)
Due its nature, GWT does not support dynamic classloading.
protected Class<? extends ServerConnector>
resolveConnectorType(int tag, ApplicationConfiguration conf)
-
-
-
Method Detail
-
createConnector
public ServerConnector createConnector(int tag, ApplicationConfiguration conf)
Create an uninitialized connector that best matches given UIDL. The connector must implement
ServerConnector
.Parameters:
tag
- connector type tag for the connector to createconf
- the application configuration to use when creating the connectorReturns:
New uninitialized and unregistered connector that can paint given UIDL.
-
resolveConnectorType
protected Class<? extends ServerConnector> resolveConnectorType(int tag, ApplicationConfiguration conf)
-
ensureConnectorLoaded
public void ensureConnectorLoaded(int tag, ApplicationConfiguration conf)
Due its nature, GWT does not support dynamic classloading. To bypass this limitation, widgetset must have function that returns Class by its fully qualified name.
Parameters:
tag
-applicationConfiguration
-
-
-