]> source.dussan.org Git - vaadin-framework.git/commitdiff
javadoc
authorArtur Signell <artur@vaadin.com>
Tue, 20 Mar 2012 12:11:13 +0000 (14:11 +0200)
committerArtur Signell <artur@vaadin.com>
Wed, 21 Mar 2012 13:28:01 +0000 (15:28 +0200)
src/com/vaadin/terminal/gwt/server/AbstractCommunicationManager.java

index e4633a0081276545c1c7d8d657906d1635b9d9c2..0c073f71b4ad338147070cc99d98f987b329eebd 100644 (file)
@@ -1164,6 +1164,16 @@ public abstract class AbstractCommunicationManager implements
         return cache;
     }
 
+    /**
+     * Checks if the component is visible in context, i.e. returns false if the
+     * child is hidden, the parent is hidden or the parent says the child should
+     * not be rendered (using
+     * {@link HasComponents#isComponentVisible(Component)}
+     * 
+     * @param child
+     *            The child to check
+     * @return true if the child is visible to the client, false otherwise
+     */
     private boolean isVisible(Component child) {
         HasComponents parent = child.getParent();
         if (parent == null || !child.isVisible()) {