Typically, "self time" measures the time spent inside the body of a method, with the exception of the time spent on methods that it calls. For example, let's say you had a simple method for retrieving sorted users getUsers , which called two methods that themselves did not call other calls.
UserList getUsers() { return sortUsers(loadUsers()); }
Since getUsers does not work, its time itself will be very low, although calling a method is expensive.
Method Self Time Call Time
This is based on other profiles that I used - not NetBeans. Hope someone can confirm or deny it for NetBeans itself.
David harkness
source share