org.generation5.swing
Interface VisStepListener

All Known Implementing Classes:
VisStepApplet.DefaultActions

public interface VisStepListener

This interface is used to control all actions within VisStepApplet.

See Also:
VisStepListener

Method Summary
 void mouseClicked(java.awt.event.MouseEvent evt)
          Called when a mouse is clicked on the visualization panel.
 void resetButton(java.awt.event.ActionEvent evt)
          Called when the reset button is clicked.
 void startButton(java.awt.event.ActionEvent evt)
          Called when the start button is clicked.
 void stepButton(java.awt.event.ActionEvent evt)
          Called when the step button is clicked.
 void timer(java.awt.event.ActionEvent evt)
          Called whenever the timer is triggered.
 

Method Detail

startButton

public void startButton(java.awt.event.ActionEvent evt)
Called when the start button is clicked.

Parameters:
evt - the action event.

stepButton

public void stepButton(java.awt.event.ActionEvent evt)
Called when the step button is clicked.

Parameters:
evt - the action event.

resetButton

public void resetButton(java.awt.event.ActionEvent evt)
Called when the reset button is clicked.

Parameters:
evt - the action event.

timer

public void timer(java.awt.event.ActionEvent evt)
Called whenever the timer is triggered.

Parameters:
evt - the action event.

mouseClicked

public void mouseClicked(java.awt.event.MouseEvent evt)
Called when a mouse is clicked on the visualization panel.

Parameters:
evt - the mouse event.
See Also:
VisualizationPanel

This documentation is part of the Generation5 JDK.