FileDocCategorySizeDatePackage
ProfileCallerAggregate.javaAPI DocExample818Mon Dec 28 21:46:20 GMT 1998tuning.profview

ProfileCallerAggregate

public class ProfileCallerAggregate extends Object
This class was generated by a SmartGuide.

Fields Summary
int
time
int
count
ProfileMethod
caller
Constructors Summary
public ProfileCallerAggregate(ProfileLine line)
This method was created by a SmartGuide.

param
callee jack.profiler.ProfileMethod

	count = line.count;
	time = line.time;
	caller = line.caller;
Methods Summary
public voidadd(ProfileLine line)
This method was created by a SmartGuide.

	count += line.count;
	time += line.time;
public voidappendTo(java.lang.StringBuffer s, boolean timeFirst)
This method was created by a SmartGuide.

param
s java.lang.StringBuffer

	s.append(timeFirst ? time : count).append("\t").append(timeFirst ? count : time).append("\t");
	caller.appendTo(s);