diff options
author | Artur Signell <artur@vaadin.com> | 2012-11-20 14:49:52 +0200 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2012-11-20 13:15:35 +0000 |
commit | 0308bf8b7b85ead586f21db82cd370c53fac46d6 (patch) | |
tree | 0b550ad3b68134b599c7a146723923f67e1d04cb /server/src/com/vaadin/ui/HasComponents.java | |
parent | 40e7287b82df23e9105f51b7ca086e93fb8903c5 (diff) | |
download | vaadin-framework-0308bf8b7b85ead586f21db82cd370c53fac46d6.tar.gz vaadin-framework-0308bf8b7b85ead586f21db82cd370c53fac46d6.zip |
Moved isComponentVisible to separate interface (#10303)
HasComponents.isComponentVisible is now SelectiveRenderer.isRendered
Change-Id: Ic3b9cd65278ffc2a38ee20c76ec771ee057268bf
Diffstat (limited to 'server/src/com/vaadin/ui/HasComponents.java')
-rw-r--r-- | server/src/com/vaadin/ui/HasComponents.java | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/server/src/com/vaadin/ui/HasComponents.java b/server/src/com/vaadin/ui/HasComponents.java index 4f6320f6b2..d2ca45fa42 100644 --- a/server/src/com/vaadin/ui/HasComponents.java +++ b/server/src/com/vaadin/ui/HasComponents.java @@ -41,25 +41,6 @@ public interface HasComponents extends Component, Iterable<Component> { public Iterator<Component> iterator(); /** - * Checks if the child component is visible. This method allows hiding a - * child component from updates and communication to and from the client. - * This is useful for components that show only a limited number of its - * children at any given time and want to allow updates only for the - * children that are visible (e.g. TabSheet has one tab open at a time). - * <p> - * Note that this will prevent updates from reaching the child even though - * the child itself is set to visible. Also if a child is set to invisible - * this will not force it to be visible. - * </p> - * - * @param childComponent - * The child component to check - * @return true if the child component is visible to the user, false - * otherwise - */ - public boolean isComponentVisible(Component childComponent); - - /** * Interface for {@link HasComponents} implementations that support sending * attach and detach events for components. * |