Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

com.memoire.foo
Class FooThread  view FooThread download FooThread.java

java.lang.Object
  extended byjava.lang.Thread
      extended bycom.memoire.foo.FooThread
All Implemented Interfaces:
FooEval, java.lang.Runnable

public class FooThread
extends java.lang.Thread
implements FooEval


Nested Class Summary
 
Nested classes inherited from class java.lang.Thread
java.lang.Thread.UncaughtExceptionHandler
 
Field Summary
private  boolean ended_
           
private  boolean killed_
           
private  java.lang.Object o_
           
private  FooThread parent_
           
private  java.lang.Object r_
           
 
Fields inherited from class java.lang.Thread
MAX_PRIORITY, MIN_PRIORITY, NORM_PRIORITY
 
Constructor Summary
FooThread(java.lang.Object _o)
           
FooThread(java.lang.Object _o, java.lang.Thread _t, java.lang.Object _r)
           
 
Method Summary
 java.lang.Object eval()
           
 boolean isEnded()
           
 boolean isKilled()
           
 void kill()
           
 FooThread parent()
           
 void run()
          The method of Thread that will be run if there is no Runnable object associated with the Thread.
 java.lang.String toString()
          Returns a string representation of this thread, including the thread's name, priority, and thread group.
 
Methods inherited from class java.lang.Thread
activeCount, checkAccess, countStackFrames, currentThread, destroy, dumpStack, enumerate, getContextClassLoader, getDefaultUncaughtExceptionHandler, getId, getName, getPriority, getThreadGroup, getUncaughtExceptionHandler, holdsLock, interrupt, interrupted, isAlive, isDaemon, isInterrupted, join, join, join, resume, setContextClassLoader, setDaemon, setDefaultUncaughtExceptionHandler, setName, setPriority, setUncaughtExceptionHandler, sleep, sleep, start, stop, stop, suspend, yield
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

parent_

private FooThread parent_

killed_

private boolean killed_

ended_

private boolean ended_

o_

private java.lang.Object o_

r_

private java.lang.Object r_
Constructor Detail

FooThread

public FooThread(java.lang.Object _o)

FooThread

public FooThread(java.lang.Object _o,
                 java.lang.Thread _t,
                 java.lang.Object _r)
Method Detail

run

public void run()
Description copied from class: java.lang.Thread
The method of Thread that will be run if there is no Runnable object associated with the Thread. Thread's implementation does nothing at all.

Specified by:
run in interface java.lang.Runnable

eval

public java.lang.Object eval()
Specified by:
eval in interface FooEval

parent

public FooThread parent()

kill

public void kill()

isKilled

public boolean isKilled()

isEnded

public boolean isEnded()

toString

public java.lang.String toString()
Description copied from class: java.lang.Thread
Returns a string representation of this thread, including the thread's name, priority, and thread group.