1 //header of class--------------------------------------------------------------- 2 import java.*; 3 4 abstract public class Service extends CommandLineThread{ 5 protected int TIMEOUT= 2100; 6 abstract public void stopService(); 7 public final static int BUILD=22; 8 //end of class------------------------------------------------------------------ 9 }