KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > dappit > Dapper > parser > profiler > SimpleProfiler


1 /**
2  *
3  */

4 package com.dappit.Dapper.parser.profiler;
5
6 /**
7  * @author Ohad Serfaty
8  *
9  */

10 public abstract class SimpleProfiler {
11
12       public abstract void start() ;
13       
14       public abstract double report(String JavaDoc reportPrefix);
15       
16 }
17
Popular Tags