diff options
author | Matti Tahvonen <matti.tahvonen@itmill.com> | 2010-06-30 20:38:57 +0000 |
---|---|---|
committer | Matti Tahvonen <matti.tahvonen@itmill.com> | 2010-06-30 20:38:57 +0000 |
commit | d31283d0afe8cd23325accf3f26c49a17d3c54a4 (patch) | |
tree | 912bddea5df865e37e8c2617bb43c8dc86cac344 /src | |
parent | 7a1cee077c05019da3a2fed4d398091624ded95f (diff) | |
download | vaadin-framework-d31283d0afe8cd23325accf3f26c49a17d3c54a4.tar.gz vaadin-framework-d31283d0afe8cd23325accf3f26c49a17d3c54a4.zip |
Cleaned javadocs
svn changeset:13982/svn branch:6.4
Diffstat (limited to 'src')
-rw-r--r-- | src/com/vaadin/ui/AbstractSelect.java | 7 | ||||
-rw-r--r-- | src/com/vaadin/ui/Table.java | 8 |
2 files changed, 6 insertions, 9 deletions
diff --git a/src/com/vaadin/ui/AbstractSelect.java b/src/com/vaadin/ui/AbstractSelect.java index 30842dae2d..510536a12b 100644 --- a/src/com/vaadin/ui/AbstractSelect.java +++ b/src/com/vaadin/ui/AbstractSelect.java @@ -858,7 +858,12 @@ public abstract class AbstractSelect extends AbstractField implements /* Container.Viewer methods */ /** - * Sets the container as data-source for viewing. + * Sets the Container that serves as the data source of the viewer. + * + * As a side-effect the fields value (selection) is set to null due old + * selection not necessary exists in new Container. + * + * @see com.vaadin.data.Container.Viewer#setContainerDataSource(Container) * * @param newDataSource * the new data source. diff --git a/src/com/vaadin/ui/Table.java b/src/com/vaadin/ui/Table.java index e45570e239..20aaedd1fc 100644 --- a/src/com/vaadin/ui/Table.java +++ b/src/com/vaadin/ui/Table.java @@ -1796,14 +1796,6 @@ public class Table extends AbstractSelect implements Action.Container, super.setValue(newValue); } - /** - * Sets the Container that serves as the data source of the viewer. - * - * As a side-effect Table's value (selection) is set to null due old - * selection not necessary exists in new Container. - * - * @see com.vaadin.data.Container.Viewer#setContainerDataSource(Container) - */ @Override public void setContainerDataSource(Container newDataSource) { |