Author: jbq Date: Fri Mar 2 08:52:24 2007 New Revision: 513838 URL: http://svn.apache.org/viewvc?view=rev&rev=513838 Log: Improve Javadoc for isOnlyProcessIfPathActive()
See http://www.nabble.com/Ajax-request-when-session-timed-out-leads-to-empty-response-tf3333681.html#a9272772 Modified: incubator/wicket/branches/wicket-1.x/wicket/src/main/java/wicket/request/RequestParameters.java Modified: incubator/wicket/branches/wicket-1.x/wicket/src/main/java/wicket/request/RequestParameters.java URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/wicket/src/main/java/wicket/request/RequestParameters.java?view=diff&rev=513838&r1=513837&r2=513838 ============================================================================== --- incubator/wicket/branches/wicket-1.x/wicket/src/main/java/wicket/request/RequestParameters.java (original) +++ incubator/wicket/branches/wicket-1.x/wicket/src/main/java/wicket/request/RequestParameters.java Fri Mar 2 08:52:24 2007 @@ -310,7 +310,9 @@ /** - * Gets the only-process-if-path-active flag + * Whether the page/version corresponding to the current request is + * targetted for the page/version the browser is showing right now, ie + * corresponds to the page/version on top of pagemap's access stack. * * @see #onlyProcessIfPathActive * @@ -362,7 +364,7 @@ b.append(" resourceKey=").append(getResourceKey()); } b.append(" onlyProcessIfPathActive=").append(isOnlyProcessIfPathActive()); - + b.append("]"); return b.toString(); }
