I am new to Profiling . i decided to start with Eclipse TPTP as its looks simple and easily configurable
I started with this basic APplication
public class As {
public static void main(String args[]) {
Two t = new Two();
t.two();
}
}
=====================
public class Two
{
public void two() {
System.out.println("Two");
}
}
==============
After running the Profiler on As.java using Profile As JavaApplication . The screen shot appeared in this way :
Please see the screen shot here
http://imageshack.us/f/11/shareb.jpg/
Please let me know what is meant by Base Time , Average Base Time and Cumulative Time .