Class AVLApplet

java.lang.Object
   |
   +----java.awt.Component
           |
           +----java.awt.Container
                   |
                   +----java.awt.Panel
                           |
                           +----java.applet.Applet
                                   |
                                   +----AVLApplet

public class AVLApplet
extends Applet
implements ActionListener, AdjustmentListener
Applet zur Darstellung eines AVL-Baumes


Constructor Index

 o AVLApplet()

Method Index

 o actionPerformed(ActionEvent)
Ereignisbehandlung.
 o adjustmentValueChanged(AdjustmentEvent)
 o init()
 o randomInt(int, int)
erzeugt Zufallszahlen.
 o start()
starte Applet.
 o stop()
stoppe Applet.

Constructors

 o AVLApplet
 public AVLApplet()

Methods

 o init
 public void init()
Overrides:
init in class Applet
 o actionPerformed
 public void actionPerformed(ActionEvent e)
Ereignisbehandlung. Wird der entsprechende Button gedrückt, wird callTreeAlg in TreeAlgorithm aufgerufen.

See Also:
callTreeAlg
 o adjustmentValueChanged
 public void adjustmentValueChanged(AdjustmentEvent e)
 o start
 public void start()
starte Applet. Ruft nur start in TreeAlgorithm auf.

Overrides:
start in class Applet
See Also:
start
 o stop
 public void stop()
stoppe Applet. Ruft nur stop in TreeAlgorithm auf.

Overrides:
stop in class Applet
See Also:
stop
 o randomInt
 protected int randomInt(int min,
                         int max)
erzeugt Zufallszahlen.

Parameters:
min - kleinste Zahl
max - größte Zahl