player
Class Main

java.lang.Object
  |
  +--java.lang.Thread
        |
        +--player.Main
All Implemented Interfaces:
Runnable

public class Main
extends Thread

Provides the main() function for the robot, a ICFP-2002 programming contest entry.

Version:
$Revision: 1.3 $
Author:
Allen D. Ball

Fields inherited from class java.lang.Thread
inheritableThreadLocals, MAX_PRIORITY, MIN_PRIORITY, NORM_PRIORITY, threadLocals
 
Method Summary
static void main(String[] argv)
          Static main() function for the robot application.
 void run()
          Does the work of setting up and starting the player.
 
Methods inherited from class java.lang.Thread
, activeCount, checkAccess, countStackFrames, currentThread, destroy, dumpStack, enumerate, getContextClassLoader, getName, getPriority, getThreadGroup, interrupt, interrupted, isAlive, isDaemon, isInterrupted, join, join, join, resume, setContextClassLoader, setDaemon, setName, setPriority, sleep, sleep, start, stop, stop, suspend, toString, yield
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Method Detail

main

public static void main(String[] argv)
Static main() function for the robot application. Creates an instance of Main and calls the start() method.
Parameters:
argv - Array of strings representing the command line arguments.

run

public void run()
Does the work of setting up and starting the player.
Overrides:
run in class Thread


Copyright 2002 Allen D. Ball. All rights reserved.