1 28 29 package org.objectweb.util.launcher ; 30 31 import org.objectweb.util.trace.TraceSystem; 32 33 34 47 public class ModeProcess 48 extends ModeThread 49 { 50 public ModeProcess() { 51 } 54 55 60 public void execute(CommandJava cmd) { 61 TraceSystem.get("launcher").info("Daemon mode"); 62 this.command_ = cmd ; 63 this.setDaemon(true); 64 this.start(); 65 } 66 } 67 | Popular Tags |