diff options
author | Leif Åstrand <leif@vaadin.com> | 2012-06-29 10:36:13 +0300 |
---|---|---|
committer | Leif Åstrand <leif@vaadin.com> | 2012-06-29 10:36:20 +0300 |
commit | b002b899c1d426a192cf825b7745063571350699 (patch) | |
tree | 3197b34f6948beb9a8d61955b20a0b4792eb40dc /src/com/vaadin/ui | |
parent | 70d24586893359e35b0fc532916acb95653890a7 (diff) | |
download | vaadin-framework-b002b899c1d426a192cf825b7745063571350699.tar.gz vaadin-framework-b002b899c1d426a192cf825b7745063571350699.zip |
Mention primitives in the javadoc (though they are autboxed) (#8888)
Diffstat (limited to 'src/com/vaadin/ui')
-rw-r--r-- | src/com/vaadin/ui/AbstractJavaScriptComponent.java | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/com/vaadin/ui/AbstractJavaScriptComponent.java b/src/com/vaadin/ui/AbstractJavaScriptComponent.java index 969c5b7fcd..a9b9494689 100644 --- a/src/com/vaadin/ui/AbstractJavaScriptComponent.java +++ b/src/com/vaadin/ui/AbstractJavaScriptComponent.java @@ -142,8 +142,9 @@ public abstract class AbstractJavaScriptComponent extends AbstractComponent { /** * Invoke a named function that the connector JavaScript has added to the * JavaScript connector wrapper object. The arguments should only contain - * data types that can be represented in JavaScript, including primitive - * boxing types, arrays, String, List, Set, Map, Connector and JavaBeans. + * data types that can be represented in JavaScript including primitives, + * their boxed types, arrays, String, List, Set, Map, Connector and + * JavaBeans. * * @param name * the name of the function |