KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tirsen > nanning > profiler > ProfiledImpl


1 package com.tirsen.nanning.profiler;
2
3 import com.tirsen.nanning.profiler.Profiled;
4
5 public class ProfiledImpl implements Profiled
6 {
7
8     public void someMethod()
9     {
10         notProfiledMethod();
11         
12     }
13     
14     public void notProfiledMethod()
15     {
16     }
17     
18     public void delayTwoHundredMillis()
19     {
20         try
21         {
22             Thread.sleep(200);
23         }
24         catch(InterruptedException JavaDoc e)
25         {
26         }
27     }
28
29 }
30
Popular Tags