summaryrefslogtreecommitdiffstats
path: root/server/src
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2013-03-04 15:41:23 +0200
committerVaadin Code Review <review@vaadin.com>2013-03-06 09:23:48 +0000
commit79b4ed10cbfdd65c94cced64ba78da21350a22ba (patch)
tree90102c2e567b976f7045a3446c72a4ce27f82927 /server/src
parent276e6fc6c1d2643c77d0e4abea8cf862cd8b9718 (diff)
downloadvaadin-framework-79b4ed10cbfdd65c94cced64ba78da21350a22ba.tar.gz
vaadin-framework-79b4ed10cbfdd65c94cced64ba78da21350a22ba.zip
Corrected javadoc regarding nested property support (#8210)
Change-Id: Idad9a5f4f747487eb2a2f1cda96e14d17b86ed24
Diffstat (limited to 'server/src')
-rw-r--r--server/src/com/vaadin/data/util/BeanContainer.java3
-rw-r--r--server/src/com/vaadin/data/util/BeanItemContainer.java3
2 files changed, 2 insertions, 4 deletions
diff --git a/server/src/com/vaadin/data/util/BeanContainer.java b/server/src/com/vaadin/data/util/BeanContainer.java
index 36ac414ad6..4e435aabcc 100644
--- a/server/src/com/vaadin/data/util/BeanContainer.java
+++ b/server/src/com/vaadin/data/util/BeanContainer.java
@@ -55,8 +55,7 @@ import java.util.Collection;
* </p>
*
* <p>
- * It is not possible to add additional properties to the container and nested
- * bean properties are not supported.
+ * It is not possible to add additional properties to the container.
* </p>
*
* @param <IDTYPE>
diff --git a/server/src/com/vaadin/data/util/BeanItemContainer.java b/server/src/com/vaadin/data/util/BeanItemContainer.java
index b501c06426..e7b38d8b88 100644
--- a/server/src/com/vaadin/data/util/BeanItemContainer.java
+++ b/server/src/com/vaadin/data/util/BeanItemContainer.java
@@ -43,8 +43,7 @@ import java.util.Collection;
* </p>
*
* <p>
- * It is not possible to add additional properties to the container and nested
- * bean properties are not supported.
+ * It is not possible to add additional properties to the container.
* </p>
*
* @param <BEANTYPE>