ewe.sys
Class mThreadGroup

java.lang.Object
  extended byewe.sys.mThreadGroup

public class mThreadGroup
extends Object


Field Summary
protected  String name
           
 
Constructor Summary
mThreadGroup(mThreadGroup group, String name)
           
mThreadGroup(String name)
           
 
Method Summary
 int activeCount()
           
 int activeGroupCount()
           
 void enumerate(mThread[] list)
           
 void enumerate(mThread[] list, boolean recurse)
           
 void enumerate(mThreadGroup[] list)
           
 void enumerate(mThreadGroup[] list, boolean recurse)
           
 int getMaxPriority()
           
 String getName()
           
 mThreadGroup getParent()
           
 boolean isDaemon()
           
 boolean parentOf(mThreadGroup g)
           
 void setDaemon(boolean daemon)
           
 void setMaxPriority(int maxPriority)
           
 String toString()
          Return a String representation of this object.
 void uncaughtException(mThread thread, Throwable t)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode
 

Field Detail

name

protected String name
Constructor Detail

mThreadGroup

public mThreadGroup(String name)

mThreadGroup

public mThreadGroup(mThreadGroup group,
                    String name)
Method Detail

uncaughtException

public void uncaughtException(mThread thread,
                              Throwable t)

activeCount

public int activeCount()

activeGroupCount

public int activeGroupCount()

enumerate

public void enumerate(mThread[] list,
                      boolean recurse)

enumerate

public void enumerate(mThread[] list)

enumerate

public void enumerate(mThreadGroup[] list,
                      boolean recurse)

enumerate

public void enumerate(mThreadGroup[] list)

getName

public String getName()

getParent

public mThreadGroup getParent()

toString

public String toString()
Description copied from class: Object
Return a String representation of this object.

Overrides:
toString in class Object
Returns:
a String representing this object.

parentOf

public boolean parentOf(mThreadGroup g)

setMaxPriority

public void setMaxPriority(int maxPriority)

getMaxPriority

public int getMaxPriority()

setDaemon

public void setDaemon(boolean daemon)

isDaemon

public boolean isDaemon()