diff options
author | Artur Signell <artur@vaadin.com> | 2012-03-13 17:59:26 +0200 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2012-03-14 16:00:47 +0200 |
commit | 79871340bdcfc7eda7e2800966e2e62215154649 (patch) | |
tree | c815b76dd46409763899be6d60c45afb9483ed0c /src/com/vaadin/ui/Form.java | |
parent | 7ab4e3ecf7ae25417f2b784f8afa5c18e330a428 (diff) | |
download | vaadin-framework-79871340bdcfc7eda7e2800966e2e62215154649.tar.gz vaadin-framework-79871340bdcfc7eda7e2800966e2e62215154649.zip |
#8500 Allow component containers to hide their children even though
the children are visible. Allows Tabsheet to disallow updates to all
tabs except the selected.
Diffstat (limited to 'src/com/vaadin/ui/Form.java')
-rw-r--r-- | src/com/vaadin/ui/Form.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/com/vaadin/ui/Form.java b/src/com/vaadin/ui/Form.java index c4ae0457a9..c39f043b21 100644 --- a/src/com/vaadin/ui/Form.java +++ b/src/com/vaadin/ui/Form.java @@ -1420,4 +1420,8 @@ public class Form extends AbstractField<Object> implements Item.Editor, return count; } + + public boolean isComponentVisible(Component childComponent) { + return true; + }; } |