KickJava   Java API By Example, From Geeks To Geeks.

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


1 package com.tirsen.nanning.profiler;
2
3 public interface Profiled
4 {
5     /**
6      * @profile
7      */

8     public void someMethod();
9     
10     public void notProfiledMethod();
11     
12     /**
13      * @profile
14      */

15     public void delayTwoHundredMillis();
16
17
18 }
19
Popular Tags