1 23 24 package com.sun.enterprise.web; 25 26 import java.util.Timer ; 27 28 public class WebContainerTimer 29 extends Timer  30 { 31 public WebContainerTimer() { 32 super(); 33 } 34 35 public WebContainerTimer(boolean isDeamon) { 36 super(isDeamon); 37 } 38 39 public void cancel() { 40 System.out.println("+++++++ com.sun.enterprise.web.WebContainerTimer +++++++"); 41 (new Throwable ()).printStackTrace(); 42 System.out.println("+++++++++++++++++++++++++++++++++++++++++++++++++"); 43 } 44 45 } 46 47 48 | Popular Tags |