Class agent.Skeleton
All Packages Class Hierarchy This Package Previous Next Index
Class agent.Skeleton
agent.Skeleton
- public class Skeleton
- extends Applet
- implements Runnable
Skeleton
-
init()
- Initialize the applet.
-
run()
- The main loop for the main thread.
-
start()
- start - Whenever a user visits our page, Applet calls this.
-
stop()
- Stop this thread.
start
public void start()
- start - Whenever a user visits our page, Applet calls this. This is
an override of an Applet method. Creates a thread and passes this
AgentLauncher into it. Works because we implement the Runnable method.
stop
public void stop()
- Stop this thread.
run
public void run()
- The main loop for the main thread.
init
public void init()
- Initialize the applet. Resize and load images.
All Packages Class Hierarchy This Package Previous Next Index