|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use WizardException | |
---|---|
com.sri.emo.controller | This package contains controller classes for the modelling program. |
com.sri.emo.dbobj | |
com.sri.emo.wizard | This package provides framework for wizard creation as well as EMO specific bindings. |
com.sri.emo.wizard.branch | |
com.sri.emo.wizard.completion | This package and sub packages provides the implementation of a "Completion Wizard." The completion Wizard takes a given node in the system as a template and allows the user to fill in the appropriate parts to create a new node. |
com.sri.emo.wizard.creation | This package and sub packages provides the implementation of a "Completion Wizard." The completion Wizard takes a given node in the system as a template and allows the user to fill in the appropriate parts to create a new node. |
com.sri.emo.wizard.defaults | This package contains default implementations of the interfaces defined in the com.sri.emo.wizard package. |
com.sri.emo.wizard.expressoimpl | This directory contains various adapter classes to bridge the Wizard APIs with Expresso. |
com.sri.emo.wizard.selection | The selection wizard walks users through steps to determine which node on the system would best suit their needs. |
Uses of WizardException in com.sri.emo.controller |
---|
Methods in com.sri.emo.controller that throw WizardException | |
---|---|
protected Wizard |
CreationWizardAction.newWizard(ExpressoRequest request)
Override of WizardController to provide for the unique capabilities and requirements of an ExpressoAwareWizardRepository as defined in the Schema. |
protected Wizard |
CompletionWizardAction.newWizard(ExpressoRequest request)
Override of WizardController to provide for the unique capabilities and requirements of an ExpressoAwareWizardRepository as defined in the Schema. |
Uses of WizardException in com.sri.emo.dbobj |
---|
Methods in com.sri.emo.dbobj that throw WizardException | |
---|---|
WizardPage |
WizStep.getWizardPage(EmoWizardMetadata metadata)
Builds a wizard page given an instance of the metadata. |
Uses of WizardException in com.sri.emo.wizard |
---|
Methods in com.sri.emo.wizard that throw WizardException | |
---|---|
WizardPage |
Wizard.begin()
Retrieve the first wizard page and initialize any special data for the Wizard. |
WizardPage |
AbstractWizard.begin()
|
Wizard |
WizardFactory.buildWizard()
Constructs a new wizard instance and returns it. |
void |
Wizard.destroy()
De-initialize all data for the wizard. |
void |
AbstractWizard.destroy()
|
Wizard |
WizardRepository.find(Serializable id)
Retrieve a wizard based on id. |
Wizard |
WizardMementoConverter.fromMemento(Serializable previouslyExternalized)
Re-fleshes out the wizard into usable forms. |
Map |
Wizard.getAllData()
Retrieve all the data for the wizard keyed by page id. |
String |
Link.getLink()
Provides a context-relative URL to something else. |
List |
Wizard.getStepHistory()
Retrieve all Pages in the order that the person has stepped through them. |
List |
WizardRepository.list()
Retrieve instances of all wizards stored in the repository. |
WizardPage |
Wizard.next(WizardPage src,
Serializable newData)
Execute the next page in the wizard. |
abstract WizardPage |
AbstractWizard.next(WizardPage src,
Serializable newData)
|
WizardPage |
Wizard.previous()
Retrieve the first wizard page and initialize any special data for the Wizard. |
WizardPage |
AbstractWizard.previous()
Backtracks the stack. |
Object |
Wizard.processFinish(WizardPage src,
Serializable data,
Map additonalParams)
Processes the final finish and returns some sort of data that can be whatever is desired. |
Object |
AbstractWizard.processFinish(WizardPage src,
Serializable data,
Map additonalParams)
Processes the final finish and returns some sort of data that can be whatever is desired. |
void |
WizardPage.setData(Serializable newData)
Sets the data associated with the page. |
Serializable |
WizardMementoConverter.toMemento(Wizard target)
Breaks the wizard down into minimal component state parts that can be stored in the session or client. |
Uses of WizardException in com.sri.emo.wizard.branch |
---|
Methods in com.sri.emo.wizard.branch that throw WizardException | |
---|---|
Map |
BranchingWizard.getAllData()
Retrieve all the data for the wizard keyed by page id. |
List |
BranchingWizard.getMainStepHistory()
Will return a history of steps without accounting for any of the branching |
List |
BranchingWizard.getStepHistory()
Retrieve all Pages in the order that the person has stepped through them. |
WizardPage |
BranchingWizard.next(WizardPage src,
Serializable newData)
Execute the next page in the wizard. |
WizardPage |
BranchingWizard.next(WizardPage src,
Serializable newData,
Serializable allData)
|
protected boolean |
BranchingWizard.onNextPage(WizardPage previousPage,
WizardPage nextPage,
Serializable previousPageData)
Template method that gets called after the next page has been determined in the sequence. |
WizardPage |
BranchingWizard.previous()
Backtracks the stack. |
Object |
BranchingWizard.processFinish(WizardPage src,
Serializable data,
Map additonalParams)
Processes the final finish and returns some sort of data that can be whatever is desired. |
Uses of WizardException in com.sri.emo.wizard.completion |
---|
Methods in com.sri.emo.wizard.completion that throw WizardException | |
---|---|
Wizard |
EmoCompletionFactory.buildWizard()
Constructs a new wizard instance and returns it. |
Wizard |
CompletionMementoConverter.fromMemento(Serializable previouslyExternalized)
Re-fleshes out the wizard into usable forms. |
Map |
RelationWizardPage.getSelectedRelations()
|
Node |
EmoCompletionWizard.getTargetNode()
|
Transition |
CompletionWizardSelector.locateCompletionWizardForNode(String definingNodeId,
String optionalNodeToModifyId)
Resolves a definingNodeId to a CompletionWizard. |
protected boolean |
EmoCompletionWizard.onNextPage(WizardPage previousPage,
WizardPage nextPage,
Serializable previousPageData)
Override of Sequential's onNextPage to allow for validation of values as they're entered. |
Object |
EmoCompletionWizard.processFinish(WizardPage src,
Serializable data,
Map additonalParams)
This version returns a Node instance if one has been successfully created. |
void |
RelationWizardPage.setData(Serializable newData)
Intercepts the setData call (which is a Map), grabs the parameters we're interested in, and calls the super.setData() with a Set of all relations that are listed as 'checked'. |
void |
MultiEntryWizardPage.setData(Serializable newData)
Sets the data associated with the page. |
void |
CustomPartHandlerPage.setData(Serializable newData)
Sets the data associated with the page. |
Serializable |
CompletionMementoConverter.toMemento(Wizard target)
Breaks the wizard down into minimal component state parts that can be stored in the session or client. |
Uses of WizardException in com.sri.emo.wizard.creation |
---|
Methods in com.sri.emo.wizard.creation that throw WizardException | |
---|---|
Wizard |
EmoCreationWizardFactory.buildWizard()
Constructs a new wizard instance and returns it. |
Wizard |
CreationMementoConverter.fromMemento(Serializable previouslyExternalized)
Re-fleshes out the wizard into usable forms. |
Map |
RelationWizardPage.getSelectedRelations()
|
Transition |
CreationWizardSelector.locateCompletionWizardForNode(String definingNodeId,
String optionalNodeToModifyId)
Resolves a definingNodeId to a CompletionWizard. |
protected boolean |
EmoCreationWizardOld.onNextPage(WizardPage previousPage,
WizardPage nextPage,
Serializable previousPageData)
Override of Sequential's onNextPage to allow for validation of values as they're entered. |
protected boolean |
EmoCreationWizard.onNextPage(WizardPage previousPage,
WizardPage nextPage,
Serializable previousPageData)
Override of Sequential's onNextPage to allow for validation of values as they're entered. |
Object |
EmoCreationWizardOld.processFinish(WizardPage src,
Serializable data,
Map additonalParams)
This version returns a Node instance if one has been successfully created. |
Object |
EmoCreationWizard.processFinish(WizardPage src,
Serializable data,
Map additonalParams)
This version returns a Node instance if one has been successfully created. |
void |
SearchListPage.setData(Serializable newData)
|
void |
RelationWizardPage.setData(Serializable newData)
Intercepts the setData call (which is a Map), grabs the parameters we're interested in, and calls the super.setData() with a Set of all relations that are listed as 'checked'. |
void |
MultiEntryWizardPage.setData(Serializable newData)
Sets the data associated with the page. |
void |
EmoDebugWizardPage.setData(Serializable newData)
|
void |
CustomPartHandlerPage.setData(Serializable newData)
Sets the data associated with the page. |
Serializable |
CreationMementoConverter.toMemento(Wizard target)
Breaks the wizard down into minimal component state parts that can be stored in the session or client. |
Uses of WizardException in com.sri.emo.wizard.defaults |
---|
Methods in com.sri.emo.wizard.defaults that throw WizardException | |
---|---|
Wizard |
ExpressoAwareWizardRepository.find(Serializable id)
Provides bridging of not only the usual find, but also in comparison to security requests. |
Wizard |
DefaultWizardRepository.find(Serializable id)
|
Map |
SequentialWizard.getAllData()
Retrieve all the data for the wizard keyed by page id. |
List |
SequentialWizard.getStepHistory()
Retrieve all Pages in the order that the person has stepped through them. |
List |
DefaultWizardRepository.list()
|
protected Wizard |
ExpressoAwareWizardRepository.loadWizard(String id)
Loads the wizard. |
WizardPage |
SequentialWizard.next(WizardPage src,
Serializable newData)
Execute the next page in the wizard. |
protected boolean |
SequentialWizard.onNextPage(WizardPage previousPage,
WizardPage nextPage,
Serializable previousPageData)
Template method that gets called after the next page has been determined in the sequence. |
WizardPage |
SequentialWizard.previous()
Backtracks the stack. |
Object |
SequentialWizard.processFinish(WizardPage src,
Serializable data,
Map additonalParams)
Processes the final finish and returns some sort of data that can be whatever is desired. |
void |
EmoWizardPage.setData(Serializable newData)
|
Uses of WizardException in com.sri.emo.wizard.expressoimpl |
---|
Methods in com.sri.emo.wizard.expressoimpl that throw WizardException | |
---|---|
String |
ExpressoLink.getLink()
|
protected Wizard |
WizardController.newWizard(ExpressoRequest request)
Create a new wizard and store it to session. |
protected void |
WizardController.releaseWizard(ExpressoRequest request,
Wizard wiz)
Removes the wizard resources from the session. |
protected void |
WizardController.runPreviousState(ExpressoRequest request,
ExpressoResponse response)
Runs the begin state. |
Uses of WizardException in com.sri.emo.wizard.selection |
---|
Methods in com.sri.emo.wizard.selection that throw WizardException | |
---|---|
Wizard |
EmoSelectionWizardFactory.buildWizard()
|
Wizard |
EmoSelectionWizardFactory.fromMemento(Serializable previouslyExternalized)
|
Node |
NameNodePage.getSelectedNode()
|
Node |
DisplaySummaryPage.getSelectedNode()
Runs the previous step history through the Decision Matrix to |
DisplaySummaryPage.SelectionResults[] |
DisplaySummaryPage.getSelectionResults()
Retrive all selection results up to this given page. |
protected Wizard |
WizardAction.newWizard(ExpressoRequest request)
Override of WizardController to provide for the unique capabilities and requirements of an ExpressoAwareWizardRepository as defined in the Schema. |
protected boolean |
EmoSelectionWizard.onNextPage(WizardPage previousPage,
WizardPage nextPage,
Serializable previousPageData)
This particular implementation performs some pre-processing for some special pages. |
Object |
EmoSelectionWizard.processFinish(WizardPage src,
Serializable data,
Map additionalParams)
This version returns a Node instance if one has been found. |
Object |
ChainedSelectionWizard.processFinish(WizardPage src,
Serializable data,
Map additionalParams)
Overrides the normal EmoSelectionWizard processing by cloning the node myself and then either redirecting to an appropriate completion wizard and |
void |
NameNodePage.setData(Serializable newData)
Sets the data associated with the page. |
Serializable |
EmoSelectionWizardFactory.toMemento(Wizard target)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |