From 8b8a14a5e804286edfeefa7eabd93c57823211b4 Mon Sep 17 00:00:00 2001 From: Keith Donald Date: Thu, 12 Apr 2007 20:35:35 +0000 Subject: [PATCH] javadoc --- .../webflow/executor/jsf/FlowNavigationHandler.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/spring-webflow/src/main/java/org/springframework/webflow/executor/jsf/FlowNavigationHandler.java b/spring-webflow/src/main/java/org/springframework/webflow/executor/jsf/FlowNavigationHandler.java index 2ad14d17..44233243 100644 --- a/spring-webflow/src/main/java/org/springframework/webflow/executor/jsf/FlowNavigationHandler.java +++ b/spring-webflow/src/main/java/org/springframework/webflow/executor/jsf/FlowNavigationHandler.java @@ -49,14 +49,14 @@ public class FlowNavigationHandler extends NavigationHandler { /** * The standard navigation handler to delegate to when this one does not apply. */ - private NavigationHandler delegateHandler; + private NavigationHandler handlerDelegate; /** * Create a new {@link FlowNavigationHandler} wrapping the specified standard navigation handler implementation. - * @param delegateHandler the standard NavigationHandler this class decorates + * @param handlerDelegate the standard NavigationHandler this class decorates */ - public FlowNavigationHandler(NavigationHandler delegateHandler) { - this.delegateHandler = delegateHandler; + public FlowNavigationHandler(NavigationHandler handlerDelegate) { + this.handlerDelegate = handlerDelegate; } public void handleNavigation(FacesContext facesContext, String fromAction, String outcome) { @@ -68,8 +68,8 @@ public class FlowNavigationHandler extends NavigationHandler { holder.setViewSelection(selectedView); } else { - // no flow execution is restored, proceed with std navigation - delegateHandler.handleNavigation(facesContext, fromAction, outcome); + // no flow execution is restored, proceed with standard navigation + handlerDelegate.handleNavigation(facesContext, fromAction, outcome); } } } \ No newline at end of file