From e1fcf853bce9bce3918e2c454cafef507a6c9cc7 Mon Sep 17 00:00:00 2001 From: Arjen Poutsma Date: Wed, 19 Nov 2008 15:44:21 +0000 Subject: [PATCH] Javadoc git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@301 50f2f4bb-b051-0410-bef5-90022cba6387 --- .../org/springframework/web/servlet/tags/form/FormTag.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/org.springframework.web.servlet/src/main/java/org/springframework/web/servlet/tags/form/FormTag.java b/org.springframework.web.servlet/src/main/java/org/springframework/web/servlet/tags/form/FormTag.java index 82830439451..2b745e8c097 100644 --- a/org.springframework.web.servlet/src/main/java/org/springframework/web/servlet/tags/form/FormTag.java +++ b/org.springframework.web.servlet/src/main/java/org/springframework/web/servlet/tags/form/FormTag.java @@ -294,21 +294,21 @@ public class FormTag extends AbstractHtmlElementTag { } /** - * Set the name of the request param for non-browser supported HTTP methods + * Set the name of the request param for non-browser supported HTTP methods. */ public void setMethodParam(String methodParam) { this.methodParam = methodParam; } /** - * Get the name of the request param for non-browser supported HTTP methods + * Get the name of the request param for non-browser supported HTTP methods. */ protected String getMethodParameter() { return this.methodParam; } /** - * Determine if the HTTP method is browser supported + * Determine if the HTTP method is supported by browsers (i.e. GET or POST). */ protected boolean isMethodBrowserSupported(String method) { return ("get".equalsIgnoreCase(method) || "post".equalsIgnoreCase(method));