aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/vaadin/terminal/gwt/client/UIDL.java
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2012-03-12 12:24:56 +0200
committerArtur Signell <artur@vaadin.com>2012-03-14 16:00:22 +0200
commit0158bd12912bede8f78203ca303fca981465d535 (patch)
treea837f7486c9ecdd9ca5ff0567bb7e9460f392702 /src/com/vaadin/terminal/gwt/client/UIDL.java
parentb47a7d5cdeb51cd7c536d2cfe4ce17b06954d51c (diff)
downloadvaadin-framework-0158bd12912bede8f78203ca303fca981465d535.tar.gz
vaadin-framework-0158bd12912bede8f78203ca303fca981465d535.zip
Connector -> ServerConnector
Diffstat (limited to 'src/com/vaadin/terminal/gwt/client/UIDL.java')
-rw-r--r--src/com/vaadin/terminal/gwt/client/UIDL.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/com/vaadin/terminal/gwt/client/UIDL.java b/src/com/vaadin/terminal/gwt/client/UIDL.java
index 70ecf01672..9476b0bbd1 100644
--- a/src/com/vaadin/terminal/gwt/client/UIDL.java
+++ b/src/com/vaadin/terminal/gwt/client/UIDL.java
@@ -516,7 +516,7 @@ public final class UIDL extends JavaScriptObject {
* the name of the attribute
* @return the Paintable referenced by the attribute, if it exists
*/
- public Connector getPaintableAttribute(String name,
+ public ServerConnector getPaintableAttribute(String name,
ApplicationConnection connection) {
return ConnectorMap.get(connection).getConnector(
getStringAttribute(name));
@@ -529,7 +529,7 @@ public final class UIDL extends JavaScriptObject {
* the name of the variable
* @return the Paintable referenced by the variable, if it exists
*/
- public Connector getPaintableVariable(String name,
+ public ServerConnector getPaintableVariable(String name,
ApplicationConnection connection) {
return ConnectorMap.get(connection).getConnector(
getStringVariable(name));