net.javaprog.ui.wizard
Interface StepListRenderer

All Known Implementing Classes:
MetalStepListRenderer, WindowsStepListRenderer

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;
     }
     ...
 }
 


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

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


updateStepList

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