Skip to content

Commit

Permalink
Another minor update
Browse files Browse the repository at this point in the history
  • Loading branch information
lincolnthree committed Jul 31, 2013
1 parent bad5fb8 commit bb555bc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ui/README.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ public class MyNextStep extends AbstractUICommand implements UIWizardStep {
. UI provider gathers input values from user.
. UI provider calls `.validate(UIValidationContext context)`
- if inputs are valid, proceed, if not, return to step #3
. UI provider populates user supplied values into input components.
. UI provider converts user supplied values (if necessary) and populates input components.
. UI provider calls `.execute(UIContext context)`

=== UIWizard execution lifecycle
Expand All @@ -267,9 +267,9 @@ public class MyNextStep extends AbstractUICommand implements UIWizardStep {
. UI provider gathers input values from user.
. UI provider calls `.validate(UIValidationContext context)`
- if inputs are valid, proceed, if not, return to step #3
. UI provider populates user supplied values into input components.
. UI provider converts user supplied values (if necessary) and populates input components.
. UI provider calls `.next(UIContext context)`
- if `NavigationResult` is contains a `UIWizard` or `UIWizardStep` type instance, repeat from step 1 for the next result type.
- if `NavigationResult` is contains a `UIWizard` or `UIWizardStep` type instance, repeat from step #1 for the next result type.
- if `NavigationResult` is null, UI provider calls `.execute(UIContext context)`


0 comments on commit bb555bc

Please sign in to comment.