FileDocCategorySizeDatePackage
Cooklet.javaAPI DocExample947Sun Jan 23 11:24:58 GMT 2000None

Cooklet

public abstract class Cooklet extends Object
A simple class, just to provide the list of methods that users need to provide to be usable in our application. Note that the class is abstract so you must subclass it, but the methods are non-abstract so you don't have to provide dummy versions if you don't need a particular functionality.
version
$Id: Cooklet.java,v 1.1 2000/01/23 16:24:59 ian Exp $

Fields Summary
Constructors Summary
Methods Summary
public voidinitialize()
The initialization method. The Cookie application will call you here (AFTER calling your no-argument constructor) to allow you to initialize your code

	
public voidterminate()
The termination method. The cookie application will call you here when it is time for you to stop cooking and shut down in an orderly fashion.

	
public voidwork()
The work method. The cookie application will call you here when it is time for you to start cooking.