Author: husted Date: Mon Sep 11 17:18:13 2006 New Revision: 442397 URL: http://svn.apache.org/viewvc?view=rev&rev=442397 Log: WW-992 Add snippets to Javadoc.
Modified: struts/struts2/trunk/core/src/main/java/org/apache/struts2/interceptor/CheckboxInterceptor.java Modified: struts/struts2/trunk/core/src/main/java/org/apache/struts2/interceptor/CheckboxInterceptor.java URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/java/org/apache/struts2/interceptor/CheckboxInterceptor.java?view=diff&rev=442397&r1=442396&r2=442397 ============================================================================== --- struts/struts2/trunk/core/src/main/java/org/apache/struts2/interceptor/CheckboxInterceptor.java (original) +++ struts/struts2/trunk/core/src/main/java/org/apache/struts2/interceptor/CheckboxInterceptor.java Mon Sep 11 17:18:13 2006 @@ -26,11 +26,21 @@ import java.util.Iterator; /** + * <!-- START SNIPPET: description --> * Looks for a hidden identification field that specifies the original value of the checkbox. * If the checkbox isn't submitted, insert it into the parameters as if it was with the value * of 'false'. - * + * <!-- END SNIPPET: description --> + * <p/> + * <!-- START SNIPPET: parameters --> + * <ul><li>setUncheckedValue - * The default value of an unchecked box can be overridden by setting the 'uncheckedValue' property. + * </li></ul> + * <!-- END SNIPPET: parameters --> + * <p/> + * <!-- START SNIPPET: extending --> + * <p/> + * <!-- END SNIPPET: extending --> */ public class CheckboxInterceptor implements Interceptor {