diff options
author | Joonas Lehtinen <joonas.lehtinen@itmill.com> | 2008-06-14 18:36:59 +0000 |
---|---|---|
committer | Joonas Lehtinen <joonas.lehtinen@itmill.com> | 2008-06-14 18:36:59 +0000 |
commit | 2c9d04e697ee83d8a8e653f6f9b98de0a271ed5c (patch) | |
tree | 16fc2af0eed6b870c935961716ea01a5d525fcbd /src/com/itmill/toolkit/ui/AbstractSelect.java | |
parent | 044e2f6fc59fdaf3df3f4f54361d19c634fafecf (diff) | |
download | vaadin-framework-2c9d04e697ee83d8a8e653f6f9b98de0a271ed5c.tar.gz vaadin-framework-2c9d04e697ee83d8a8e653f6f9b98de0a271ed5c.zip |
Fixed #1046 : Removed references to non-existing Container.Managed
svn changeset:4886/svn branch:trunk
Diffstat (limited to 'src/com/itmill/toolkit/ui/AbstractSelect.java')
-rw-r--r-- | src/com/itmill/toolkit/ui/AbstractSelect.java | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/com/itmill/toolkit/ui/AbstractSelect.java b/src/com/itmill/toolkit/ui/AbstractSelect.java index 161204e012..fc7acaff30 100644 --- a/src/com/itmill/toolkit/ui/AbstractSelect.java +++ b/src/com/itmill/toolkit/ui/AbstractSelect.java @@ -356,7 +356,7 @@ public abstract class AbstractSelect extends AbstractField implements * java.util.Map) */ public void changeVariables(Object source, Map variables) { - super.changeVariables(source, variables); + super.changeVariables(source, variables); // New option entered (and it is allowed) final String newitem = (String) variables.get("newitem"); @@ -703,8 +703,6 @@ public abstract class AbstractSelect extends AbstractField implements return items.getContainerProperty(itemId, propertyId); } - /* Container.Managed methods ******************************************** */ - /** * Adds the new property to all items. Adds a property with given id, type * and default value to all items in the container. @@ -955,8 +953,7 @@ public abstract class AbstractSelect extends AbstractField implements /** * Does the select allow adding new options by the user. If true, the new * options can be added to the Container. The text entered by the user is - * used as id. No that data-source must allow adding new items (it must - * implement Container.Managed). + * used as id. No that data-source must allow adding new items. * * @return True if additions are allowed. */ |