Ejemplo n.º 1
0
 public boolean activate() {
   if (thread == null)
     thread =
         new ThreadEngine.SupportThread(
             "THThreads" + Thread.currentThread().getThreadGroup().getName().charAt(0),
             MudHost.TIME_UTILTHREAD_SLEEP,
             this,
             CMSecurity.isDebugging("UTILITHREAD"));
   if (!thread.started) thread.start();
   return true;
 }