summaryrefslogtreecommitdiffstats
path: root/server/src/com/vaadin/ui/AbstractJavaScriptComponent.java
diff options
context:
space:
mode:
authorLeif Åstrand <leif@vaadin.com>2014-11-17 08:14:10 +0200
committerVaadin Code Review <review@vaadin.com>2015-01-13 20:30:45 +0000
commit5102cc98c295a49487fcf90cc6ac7980d166eb40 (patch)
tree59b27fb5a7b41053c7239603052e17793f1aaa3a /server/src/com/vaadin/ui/AbstractJavaScriptComponent.java
parent30f0e91195447140190f4c4feb232e9c13d02453 (diff)
downloadvaadin-framework-5102cc98c295a49487fcf90cc6ac7980d166eb40.tar.gz
vaadin-framework-5102cc98c295a49487fcf90cc6ac7980d166eb40.zip
Implement JavaScript renderer support (#15485)
Change-Id: Ifeac12d4124a4a7e5d0c143ff5c0590a2c98509d
Diffstat (limited to 'server/src/com/vaadin/ui/AbstractJavaScriptComponent.java')
-rw-r--r--server/src/com/vaadin/ui/AbstractJavaScriptComponent.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/src/com/vaadin/ui/AbstractJavaScriptComponent.java b/server/src/com/vaadin/ui/AbstractJavaScriptComponent.java
index f3cbf47b62..84023555bb 100644
--- a/server/src/com/vaadin/ui/AbstractJavaScriptComponent.java
+++ b/server/src/com/vaadin/ui/AbstractJavaScriptComponent.java
@@ -119,8 +119,8 @@ import com.vaadin.shared.ui.JavaScriptComponentState;
* <li>Java Dates are represented by JavaScript numbers containing the timestamp
* </li>
* <li>List, Set and all arrays in Java are represented by JavaScript arrays.</li>
- * <li>Map<String, ?> in Java is represented by JavaScript object with fields
- * corresponding to the map keys.</li>
+ * <li>Map&lt;String, ?&gt; in Java is represented by JavaScript object with
+ * fields corresponding to the map keys.</li>
* <li>Any other Java Map is represented by a JavaScript array containing two
* arrays, the first contains the keys and the second contains the values in the
* same order.</li>