diff options
author | Artur Signell <artur@vaadin.com> | 2012-03-12 12:24:56 +0200 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2012-03-14 16:00:22 +0200 |
commit | 0158bd12912bede8f78203ca303fca981465d535 (patch) | |
tree | a837f7486c9ecdd9ca5ff0567bb7e9460f392702 /src/com/vaadin/terminal/gwt/client/UIDL.java | |
parent | b47a7d5cdeb51cd7c536d2cfe4ce17b06954d51c (diff) | |
download | vaadin-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.java | 4 |
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)); |