ftcomputing.robo
Class Wait

java.lang.Object
  extended by ftcomputing.robo.Wait

public class Wait
extends java.lang.Object

Konstanten, die als Rückgabewerte benutzt werden, um den Grund für das Beenden anzuzeigen. Wird benutzt bei: FishFace.waitForMotors(int, int...) & FishFace.waitForChange(int, int, int)

Author:
Ulrich Müller, Michael Fennel

Field Summary
static int Abort
          Funktion wurde intern durch ein Ereignis abgebrochen (z.
static int End
          Funktion wurde normal beendet
static int ESC
          Funktion wurde duch Escape-Taste beendet
static int NotHalt
          Funktion wurde durch NotHalt = true beendet
static int Time
          Funktion wurde durch Ablaufen eines Timers beendet
 
Constructor Summary
Wait()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

End

public static final int End
Funktion wurde normal beendet

See Also:
Constant Field Values

Time

public static final int Time
Funktion wurde durch Ablaufen eines Timers beendet

See Also:
Constant Field Values

NotHalt

public static final int NotHalt
Funktion wurde durch NotHalt = true beendet

See Also:
Constant Field Values

ESC

public static final int ESC
Funktion wurde duch Escape-Taste beendet

See Also:
Constant Field Values

Abort

public static final int Abort
Funktion wurde intern durch ein Ereignis abgebrochen (z. Bsp. Tasterdruck bei FishFace.waitForChange(int, int, int) )

See Also:
Constant Field Values
Constructor Detail

Wait

public Wait()