01: /** 02: * 03: */package com.dappit.Dapper.parser.profiler; 04: 05: /** 06: * @author Ohad Serfaty 07: * 08: */ 09: public abstract class SimpleProfiler { 10: 11: public abstract void start(); 12: 13: public abstract double report(String reportPrefix); 14: 15: }