]> source.dussan.org Git - vaadin-framework.git/commitdiff
Rename getWidgetElement() -> getElement() (#8888)
authorLeif Åstrand <leif@vaadin.com>
Thu, 28 Jun 2012 16:45:35 +0000 (19:45 +0300)
committerLeif Åstrand <leif@vaadin.com>
Thu, 28 Jun 2012 16:45:35 +0000 (19:45 +0300)
WebContent/statictestfiles/jsconnector.js
src/com/vaadin/terminal/AbstractJavaScriptExtension.java
src/com/vaadin/terminal/gwt/client/JavaScriptConnectorHelper.java
src/com/vaadin/ui/AbstractJavaScriptComponent.java

index d7f697dbf57fc874b0fd667d0a9fe8d4dc24ba57..a87df92bc83970fa8004fb7c945d0356d405ffd5 100644 (file)
@@ -1,7 +1,7 @@
 window.com_vaadin_tests_components_javascriptcomponent_BasicJavaScriptComponent_ExampleWidget = function() {
        var connector = this;
        
-       var rootElement = connector.getWidgetElement();
+       var rootElement = connector.getElement();
        rootElement.innerHTML = 'Hello world!';
        rootElement.onclick = function() {
                connector.getRpcProxy().onClick("message");
index bdcd948c74af4684e997e4a82b631d71732f0455..77540c355a65552df19358945d9e0d2ffe588317 100644 (file)
@@ -34,9 +34,9 @@ import com.vaadin.ui.JavaScriptCallback;
  * the connector's parent. If <code>connectorId</code> is provided, the id of
  * the parent of the corresponding connector with the passed id is returned
  * instead.</li>
- * <li><code>getWidgetElement([connectorId])</code> - returns the DOM Element
- * that is the root of a connector's widget. <code>null</code> is returned if
- * the connector can not be found or if the connector doesn't have a widget. If
+ * <li><code>getElement([connectorId])</code> - returns the DOM Element that is
+ * the root of a connector's widget. <code>null</code> is returned if the
+ * connector can not be found or if the connector doesn't have a widget. If
  * <code>connectorId</code> is not provided, the connector id of the current
  * connector will be used.</li>
  * <li><code>getState()</code> - returns an object corresponding to the shared
index f3a3aa3e8340d25103a9b9043cdf9b7a98b245c1..86c11fd26d1359b2bedaacb12b273ea22c3478fe 100644 (file)
@@ -185,7 +185,7 @@ public class JavaScriptConnectorHelper {
                 }
                 return rpcObjects.@java.util.Map::get(Ljava/lang/Object;)(iface);
             }),
-            'getWidgetElement': $entry(function(connectorId) {
+            'getElement': $entry(function(connectorId) {
                 return h.@com.vaadin.terminal.gwt.client.JavaScriptConnectorHelper::getWidgetElement(Ljava/lang/String;)(connectorId);
             }),
             'registerRpc': function(iface, rpcHandler) {
index 0d7f60186a109be2c71b4220a5875943a795cad1..969c5b7fcd6ec2793c2404cda37b23ce563f0632 100644 (file)
@@ -37,9 +37,9 @@ import com.vaadin.terminal.gwt.client.ui.JavaScriptWidget;
  * the connector's parent. If <code>connectorId</code> is provided, the id of
  * the parent of the corresponding connector with the passed id is returned
  * instead.</li>
- * <li><code>getWidgetElement([connectorId])</code> - returns the DOM Element
- * that is the root of a connector's widget. <code>null</code> is returned if
- * the connector can not be found or if the connector doesn't have a widget. If
+ * <li><code>getElement([connectorId])</code> - returns the DOM Element that is
+ * the root of a connector's widget. <code>null</code> is returned if the
+ * connector can not be found or if the connector doesn't have a widget. If
  * <code>connectorId</code> is not provided, the connector id of the current
  * connector will be used.</li>
  * <li><code>getState()</code> - returns an object corresponding to the shared