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/AbstractComponentContainer.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/AbstractComponentContainer.java')
-rw-r--r-- | src/com/vaadin/ui/AbstractComponentContainer.java | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/com/vaadin/ui/AbstractComponentContainer.java b/src/com/vaadin/ui/AbstractComponentContainer.java index 20b79e8a06..01b5a7ad4c 100644 --- a/src/com/vaadin/ui/AbstractComponentContainer.java +++ b/src/com/vaadin/ui/AbstractComponentContainer.java @@ -382,4 +382,14 @@ public abstract class AbstractComponentContainer extends AbstractComponent public Iterator<Component> iterator() { return getComponentIterator(); } + + /* + * (non-Javadoc) + * + * @see + * com.vaadin.ui.HasComponents#isComponentVisible(com.vaadin.ui.Component) + */ + public boolean isComponentVisible(Component childComponent) { + return true; + } }
\ No newline at end of file |