Package java.lang
Class Thread

Public Method setDaemon

final void setDaemon(boolean set)

_INSERT_METHOD_SIGNATURE_HERE_

Description:

Marks this thread as deamon or user thread. A deamon thread is a thread that provides background services to other user threads. It will be automatically terminated when all user threads died. This method must be invoked before the thread is started.