net.javaprog.ui.wizard
Interface StepListRenderer

All Known Implementing Classes:
MetalStepListRenderer, MetalStepListRenderer.UIResource, WindowsStepListRenderer, WindowsStepListRenderer.UIResource

public interface StepListRenderer

Provides an interface for rendering step sequence meta information. Implementing classes should subclass an appropriate java.awt.Component subclass and return a reference to themselves:

 public class MyStepListRenderer
     extends JPanel implements StepListRenderer {

     public Component getStepListRendererComponent(Wizard w) {
         return this;
     }
     ...
 }
 

Author:
Michael Rudolf

Method Summary
 Component getStepListRendererComponent(Wizard wizard)
          Returns a component capable of rendering step sequence meta information.
 void updateStepList(WizardModel model)
          Called to update the display for the given step sequence.
 

Method Detail

getStepListRendererComponent

Component getStepListRendererComponent(Wizard wizard)
Returns a component capable of rendering step sequence meta information.


updateStepList

void updateStepList(WizardModel model)
Called to update the display for the given step sequence.