From 330173e457887c6f60185137eb71aab861b55a6d Mon Sep 17 00:00:00 2001 From: David Syer Date: Mon, 9 Apr 2007 21:07:58 +0000 Subject: [PATCH] Added
to java docs. --- .../webflow/executor/jsf/FlowPhaseListener.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-webflow/src/main/java/org/springframework/webflow/executor/jsf/FlowPhaseListener.java b/spring-webflow/src/main/java/org/springframework/webflow/executor/jsf/FlowPhaseListener.java index 6db87a83..aee88608 100644 --- a/spring-webflow/src/main/java/org/springframework/webflow/executor/jsf/FlowPhaseListener.java +++ b/spring-webflow/src/main/java/org/springframework/webflow/executor/jsf/FlowPhaseListener.java @@ -199,12 +199,12 @@ public class FlowPhaseListener implements PhaseListener { * a logical Spring Web Flow application view name into a JSF view id.
* * JSF view ids are important to this phase listener: it uses them to check whether the current view has changed, - * and if a new view needs to be created and activated by delegating to the application's {@link ViewHandler}. + * and if a new view needs to be created and activated by delegating to the application's {@link ViewHandler}.
* * A view handler typically treats a JSF view id as the physical location of a view template encapsulating a page * layout. The JSF view id normally specifies the physical location of the view template minus a suffix. View * handlers typically replace the suffix of any view id with their own default suffix (e.g. ".jsp" or ".xhtml") and - * then try to locate a physical template view. + * then try to locate a physical template view.
* * The {@link ViewIdMapper} provides the ability to customize how SWF view name is mapped to a JSF view id that will * be passed to the ViewHandler. The default value for the view id mapper is a {@link DefaultViewIdMapper} which