Uses of Class
com.sun.webui.jsf.component.WizardStep

Packages that use WizardStep
com.sun.webui.jsf.component   
com.sun.webui.jsf.event   
com.sun.webui.jsf.model   
 

Uses of WizardStep in com.sun.webui.jsf.component
 

Subclasses of WizardStep in com.sun.webui.jsf.component
 class WizardBranch
           
 class WizardBranchSteps
          The WizardBranchSteps component groups a sequence of WizardStep children into a conditional branch.
 class WizardSubstepBranch
          The WizardSubstepBranch component represents a conditional branch in a wizard step sequence.
 

Methods in com.sun.webui.jsf.component that return WizardStep
 WizardStep Wizard.getCurrentStep()
          Return the step currently being performed.
 

Methods in com.sun.webui.jsf.component with parameters of type WizardStep
 javax.faces.component.UIComponent Wizard.getStepNumberComponent(WizardStep step, java.lang.String numberString)
          Return the component to render for the step number that appears in the step list.
 javax.faces.component.UIComponent Wizard.getStepPlaceholderTextComponent(WizardStep step)
          Return the component to render for a branch step's placeholder text that appears in the step list.
 javax.faces.component.UIComponent Wizard.getStepSummaryComponent(WizardStep step)
          Return the component to render for the step summary text that appears in the step list.
 boolean Wizard.isCurrentStep(WizardStep step)
          Return true if step is the current step, else false.
 

Uses of WizardStep in com.sun.webui.jsf.event
 

Methods in com.sun.webui.jsf.event that return WizardStep
 WizardStep WizardEvent.getStep()
          Return the WizardStep that generated this event.
 

Methods in com.sun.webui.jsf.event with parameters of type WizardStep
 void WizardEvent.setStep(WizardStep step)
          Set the WizardStep that generated this event.
 

Constructors in com.sun.webui.jsf.event with parameters of type WizardStep
WizardEvent(Wizard wizard, javax.faces.component.UIComponent eventSource, int event, WizardStep step, java.lang.String gotoStepId)
          Contruct a WizardEvent with event data.
 

Uses of WizardStep in com.sun.webui.jsf.model
 

Methods in com.sun.webui.jsf.model that return WizardStep
 WizardStep WizardModel.getCurrentStep()
          Return the step currently being preformed.
 WizardStep WizardModelBase.getCurrentStep()
          Return the current WizardStep instance.
 WizardStep WizardModel.getFirstStep()
          Return the first WizardStep instance of the sequence.
 WizardStep WizardModelBase.getFirstStep()
          Return the first WizardStep instance.
 WizardStep WizardModelBase.getLastStep()
          Return the last WizardStep instance.
 WizardStep WizardModel.getNextStep(WizardStep step)
          Return the WizardStep instance following the specified step.
 WizardStep WizardModelBase.getNextStep(WizardStep step)
          Return the WizardStep instance following step.
 WizardStep WizardModel.getPreviousStep(WizardStep step)
          Return the WizardStep instance preceding the specified step.
 WizardStep WizardModelBase.getPreviousStep(WizardStep step)
          Return the WizardStep instance preceding step If there is no previous step return null.
 WizardStep WizardStepListItem.getStep()
          Return the WizardStep instance that this WizardStepListItem represents.
 

Methods in com.sun.webui.jsf.model with parameters of type WizardStep
 boolean WizardModel.canGotoStep(WizardStep step)
          Return true if the user can navigate to this step out of seqence, else false.
 boolean WizardModelBase.canGotoStep(WizardStep step)
          Return true if the user can navigate to step out of sequence, else false.
 WizardStep WizardModel.getNextStep(WizardStep step)
          Return the WizardStep instance following the specified step.
 WizardStep WizardModelBase.getNextStep(WizardStep step)
          Return the WizardStep instance following step.
 java.lang.String WizardModel.getPlaceholderText(WizardStep step)
          Return a description of this branch step.
 java.lang.String WizardModelBase.getPlaceholderText(WizardStep step)
          Return a description of this WizardBranch step.
 WizardStep WizardModel.getPreviousStep(WizardStep step)
          Return the WizardStep instance preceding the specified step.
 WizardStep WizardModelBase.getPreviousStep(WizardStep step)
          Return the WizardStep instance preceding step If there is no previous step return null.
 boolean WizardModel.hasCancel(WizardStep step)
          Return true if the cancel button should be rendered for this step, else false.
 boolean WizardModelBase.hasCancel(WizardStep step)
          Return true if the cancel button should be rendered for this step, else false.
 boolean WizardModel.hasClose(WizardStep step)
          Return true if the close button should be rendered for this step, else false.
 boolean WizardModelBase.hasClose(WizardStep step)
          Return true if the close button should be rendered for this step, else false.
 boolean WizardModel.hasFinish(WizardStep step)
          Return true if the finish button should be rendered for this step, else false.
 boolean WizardModelBase.hasFinish(WizardStep step)
          Return true if the finish button should be rendered for this step, else false.
 boolean WizardModel.hasNext(WizardStep step)
          Return true if the next button should be rendered for this step, else false.
 boolean WizardModelBase.hasNext(WizardStep step)
          Return true if the next button should be rendered for this step, else false.
 boolean WizardModel.hasPrevious(WizardStep step)
          Return true if the previous button should be rendered for this step, else false.
 boolean WizardModelBase.hasPrevious(WizardStep step)
          Return true if the previous button should be rendered for this step, else false.
 boolean WizardModel.isBranch(WizardStep step)
          Return true if step is a baranching step, else false.
 boolean WizardModelBase.isBranch(WizardStep step)
          Return true if step is a branching step, else false.
 boolean WizardModel.isCancelDisabled(WizardStep step)
          Return true if the cancel button should be disabled for this step, else false.
 boolean WizardModelBase.isCancelDisabled(WizardStep step)
          Return true if the cancel button should be disabled for this step, else false.
 boolean WizardModel.isCloseDisabled(WizardStep step)
          Return true if the close button should be disabled for this step, else false.
 boolean WizardModelBase.isCloseDisabled(WizardStep step)
          Return true if the close button should be disabled for this step, else false.
 boolean WizardModel.isCurrentStep(WizardStep step)
          Return true if step is the current step, else false.
 boolean WizardModelBase.isCurrentStep(WizardStep step)
          Return true if step is the current step, else false.
 boolean WizardModel.isFinishDisabled(WizardStep step)
          Return true if the finish button should be disabled for this step, else false.
 boolean WizardModelBase.isFinishDisabled(WizardStep step)
          Return true if the finish button should be disabled for this step, else false.
 boolean WizardModel.isFinishStep(WizardStep step)
          Return true if step is the finish step, else false.
 boolean WizardModelBase.isFinishStep(WizardStep step)
          Return true if step is the step the should contain a Finish button.
 boolean WizardModel.isNextDisabled(WizardStep step)
          Return true if the next button should be disabled for this step, else false.
 boolean WizardModelBase.isNextDisabled(WizardStep step)
          Return true if the next button should be disabled for this step, else false.
 boolean WizardModel.isPreviousDisabled(WizardStep step)
          Return true if the previous button should be disabled for this step, else false.
 boolean WizardModelBase.isPreviousDisabled(WizardStep step)
          Return true if the previous button should be disabled for this step, else false.
 boolean WizardModel.isResultsStep(WizardStep step)
          Return true if step is the results step, else false.
 boolean WizardModelBase.isResultsStep(WizardStep step)
          Return true if step is the results step, else false.
 boolean WizardModel.isSubstep(WizardStep step)
          Return true if step is a substep step, else false.
 boolean WizardModelBase.isSubstep(WizardStep step)
          Return true if step is a substep step, else false.
 void WizardStepListItem.setStep(WizardStep step)
          Set the WizardStep instance this WizardStepListItem represents.
 



Copyright © 2008 Sun Microsystems, Inc. All Rights Reserved.