diff --git a/spring-webflow/src/main/java/org/springframework/webflow/action/FormAction.java b/spring-webflow/src/main/java/org/springframework/webflow/action/FormAction.java index 7018c1aa..d1feff1d 100644 --- a/spring-webflow/src/main/java/org/springframework/webflow/action/FormAction.java +++ b/spring-webflow/src/main/java/org/springframework/webflow/action/FormAction.java @@ -42,8 +42,8 @@ import org.springframework.webflow.execution.ScopeType; * Several action execution methods are provided: *
* When it comes to validating submitted input data using a registered {@link org.springframework.validation.Validator}, @@ -252,7 +252,7 @@ public class FormAction extends MultiAction implements InitializingBean { /** * The type of form object, typically an instantiable class. Required if {@link #createFormObject(RequestContext)} - * is not overidden or when a validator is used. + * is not overridden or when a validator is used. */ private Class formObjectClass; @@ -446,7 +446,7 @@ public class FormAction extends MultiAction implements InitializingBean { * {@link #getFormObjectScope() scope}. If you want to reset the form handling machinery, including creation or * loading of a fresh form object instance, call {@link #resetForm(RequestContext)} instead. *
- * NOTE: This action method is not designed to be overidden and might become final in a future
+ * NOTE: This action method is not designed to be overridden and might become final in a future
* version of Spring Web Flow. If you need to execute custom form setup logic have your flow call this method along
* with your own custom methods as part of a single action chain.
* @param context the action execution context, for accessing and setting data in "flow scope" or "request scope"
@@ -468,7 +468,7 @@ public class FormAction extends MultiAction implements InitializingBean {
* Bind incoming request parameters to allowed fields of the form object and then validate the bound form object if
* a validator is configured.
*
- * NOTE: This action method is not designed to be overidden and might become final in a future
+ * NOTE: This action method is not designed to be overridden and might become final in a future
* version of Spring Web Flow. If you need to execute custom bind and validate logic have your flow call this method
* along with your own custom methods as part of a single action chain. Alternatively, override the
* {@link #doBind(RequestContext, DataBinder)} or {@link #doValidate(RequestContext, Object, Errors)} hooks.
@@ -505,7 +505,7 @@ public class FormAction extends MultiAction implements InitializingBean {
/**
* Bind incoming request parameters to allowed fields of the form object.
*
- * NOTE: This action method is not designed to be overidden and might become final in a future
+ * NOTE: This action method is not designed to be overridden and might become final in a future
* version of Spring Web Flow. If you need to execute custom data binding logic have your flow call this method
* along with your own custom methods as part of a single action chain. Alternatively, override the
* {@link #doBind(RequestContext, DataBinder)} hook.
@@ -527,7 +527,7 @@ public class FormAction extends MultiAction implements InitializingBean {
/**
* Validate the form object by invoking the validator if configured.
*
- * NOTE: This action method is not designed to be overidden and might become final in a future
+ * NOTE: This action method is not designed to be overridden and might become final in a future
* version of Spring Web Flow. If you need to execute custom validation logic have your flow call this method along
* with your own custom methods as part of a single action chain. Alternatively, override the
* {@link #doValidate(RequestContext, Object, Errors)} hook.
@@ -560,7 +560,7 @@ public class FormAction extends MultiAction implements InitializingBean {
/**
* Resets the form by clearing out the form object in the specified scope and recreating it.
*
- * NOTE: This action method is not designed to be overidden and might become final in a future
+ * NOTE: This action method is not designed to be overridden and might become final in a future
* version of Spring Web Flow. If you need to execute custom reset logic have your flow call this method along with
* your own custom methods as part of a single action chain.
* @param context the request context