Update of /cvsroot/springframework/spring-projects/spring-webflow/src/java/org/springframework/webflow/execution
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv483/src/java/org/springframework/webflow/execution
Modified Files:
FlowExecution.java
Log Message:
polish
Index: FlowExecution.java
===================================================================
RCS file: /cvsroot/springframework/spring-projects/spring-webflow/src/java/org/springframework/webflow/execution/FlowExecution.java,v
retrieving revision 1.40
retrieving revision 1.41
diff -C2 -d -r1.40 -r1.41
*** FlowExecution.java 16 Apr 2006 13:49:25 -0000 1.40
--- FlowExecution.java 20 Apr 2006 05:21:39 -0000 1.41
***************
*** 35,39 ****
* creates an instance of an object implementing this interface, initializing it
* with the requested Flow definition which becomes the execution's "root", or
! * top-level flow. After creation, the {@link #start(ExternalContext)} operation
* is called, which causes the execution to activate a new session for its root
* flow definition. That session is then pushed onto a stack and its definition
--- 35,39 ----
* creates an instance of an object implementing this interface, initializing it
* with the requested Flow definition which becomes the execution's "root", or
! * top-level flow. After creation, the {@link #start(AttributeMap, ExternalContext)} operation
* is called, which causes the execution to activate a new session for its root
* flow definition. That session is then pushed onto a stack and its definition
***************
*** 55,59 ****
* Subsequent requests from the client to manipuate this flow execution trigger
* restoration and rehydration of this object, followed by an invocation of the
! * {@link #signalEvent(String, ExternalContext)} operation. The signalEvent
* operation tells this state machine what action the user took from within the
* context of the current state; for example, the user may have pressed pressed
--- 55,59 ----
* Subsequent requests from the client to manipuate this flow execution trigger
* restoration and rehydration of this object, followed by an invocation of the
! * {@link #signalEvent(EventId, ExternalContext)} operation. The signalEvent
* operation tells this state machine what action the user took from within the
* context of the current state; for example, the user may have pressed pressed
|