You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@click.apache.org by sa...@apache.org on 2010/06/11 18:29:43 UTC

svn commit: r953755 - /click/trunk/click/framework/src/org/apache/click/util/ClickUtils.java

Author: sabob
Date: Fri Jun 11 16:29:43 2010
New Revision: 953755

URL: http://svn.apache.org/viewvc?rev=953755&view=rev
Log:
javadoc

Modified:
    click/trunk/click/framework/src/org/apache/click/util/ClickUtils.java

Modified: click/trunk/click/framework/src/org/apache/click/util/ClickUtils.java
URL: http://svn.apache.org/viewvc/click/trunk/click/framework/src/org/apache/click/util/ClickUtils.java?rev=953755&r1=953754&r2=953755&view=diff
==============================================================================
--- click/trunk/click/framework/src/org/apache/click/util/ClickUtils.java (original)
+++ click/trunk/click/framework/src/org/apache/click/util/ClickUtils.java Fri Jun 11 16:29:43 2010
@@ -2045,11 +2045,13 @@ public class ClickUtils {
     }
 
     /**
-     * Get the parent page of the given control. This method will walk up
-     * the control's parent hierarchy to find its parent page.
+     * Get the parent page of the given control or null if the control has no
+     * parent set. This method will walk up the control's parent hierarchy to
+     * find its parent page.
      *
      * @param control the control to get the parent page from
-     * @return the parent page of the control
+     * @return the parent page of the control or null if the control has no
+     * parent
      */
     public static Page getParentPage(Control control) {
         Object parent = control.getParent();