Browse Source

Mention primitives in the javadoc (though they are autboxed) (#8888)

tags/7.0.0.alpha3
Leif Åstrand 12 years ago
parent
commit
b002b899c1

+ 3
- 2
src/com/vaadin/terminal/AbstractJavaScriptExtension.java View File

@@ -139,8 +139,9 @@ public abstract class AbstractJavaScriptExtension extends AbstractExtension {
/**
* 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

+ 3
- 2
src/com/vaadin/ui/AbstractJavaScriptComponent.java View File

@@ -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

Loading…
Cancel
Save