Uses of Class
com.alee.extended.progress.StepData

Packages that use StepData
com.alee.extended.progress   
 

Uses of StepData in com.alee.extended.progress
 

Fields in com.alee.extended.progress with type parameters of type StepData
protected  java.util.List<StepData> WebStepProgress.steps
          Progress data.
 

Methods in com.alee.extended.progress that return StepData
 StepData WebStepProgress.getSelectedStep()
          Returns selected step.
 StepData WebStepProgress.getStep(int index)
          Returns step at the specified index.
 

Methods in com.alee.extended.progress that return types with arguments of type StepData
static java.util.List<StepData> WebStepProgress.createDefaultData(int amount)
          Returns specified amount of default steps with empty label components.
static java.util.List<StepData> WebStepProgress.createSteps(java.awt.Component... labels)
          Returns steps with the specified label components.
static java.util.List<StepData> WebStepProgress.createSteps(java.lang.String... names)
          Returns steps with WebLabel components using the specified step names.
 java.util.List<StepData> WebStepProgress.getSteps()
          Returns list of existing steps.
 

Methods in com.alee.extended.progress with parameters of type StepData
protected  void WebStepProgress.clearStep(StepData step)
          Clears specified step.
 void WebStepProgress.removeStep(StepData stepData)
          Removes specified step.
 void WebStepProgress.setSelectedStep(StepData step)
          Sets selected step.
 

Method parameters in com.alee.extended.progress with type arguments of type StepData
 void WebStepProgress.addSteps(java.util.List<StepData> steps)
          Adds new steps.
 void WebStepProgress.setSteps(java.util.List<StepData> steps)
          Sets new steps.
 

Constructors in com.alee.extended.progress with parameters of type StepData
WebStepProgress(StepData... steps)
          Constructs new WebStepProgress with the specified steps.
 

Constructor parameters in com.alee.extended.progress with type arguments of type StepData
WebStepProgress(java.util.List<StepData> steps)
          Constructs new WebStepProgress with the specified steps.