public interface Wizard
Document
 creation wizards based dialogs. When a user completes the steps in a
 wizard, a new document is generally added to the current project.  It is up to the individual IDEs to determine where users access these wizards.
| Modifier and Type | Method and Description | 
|---|---|
boolean | 
invoke(Context context)
Invokes the object, usually called by the IDE from the button that
 launches the wizard. 
 | 
boolean | 
isAvailable(Context context)
Called when the availability of the wizard must be determined. 
 | 
boolean invoke(Context context)
context - the context of the invocation.true if the invocation was successful, 
         false if it failed, or was aborted.Contextboolean isAvailable(Context context)
context - The Context to use when invoking this 
                Wizard.true if the wizard can be invoked, or 
         false otherwise.