Package 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 Instance Methods Concrete 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 implementServerConnector
.- Parameters:
tag
- connector type tag for the connector to createconf
- the application configuration to use when creating the connector- Returns:
- 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
-
-
-