D I M P S

D

Decorator - class Decorator.
This class creates a graphics window, and then adds some display objects to the scene.
Decorator(int) - Constructor for class Decorator
Create a new Decorator and all the required patterns.

I

InsertionSort(int[]) - Method in class Sorter
Sort the given int array.

M

main(String[]) - Static method in class Manager
Start the program running.
main(String[]) - Static method in class Sorter
Run and gun
Manager - class Manager.
This class creates a Decorator, then lets the user ask for displays of different patterns.
Manager() - Constructor for class Manager
 

P

printIntArray(int[]) - Method in class Sorter
Print the contents of the given integer array.

S

showPattern(int) - Method in class Decorator
Display the requested patterns
shutDown() - Method in class Decorator
Close down the display window.
Sorter - class Sorter.
Simple insertion sorter
Sorter() - Constructor for class Sorter
 

D I M P S