FileDocCategorySizeDatePackage
ProfileLine.javaAPI DocExample998Mon Dec 28 21:46:12 GMT 1998tuning.profview

ProfileLine

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

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

param
line java.lang.String

	this.line = line;
	int idx = line.indexOf((int) ' ");
	count = Integer.parseInt(line.substring(0,idx));
	callee = new ProfileMethod(line.substring(idx + 1,(idx = line.indexOf((int) ' ",idx+1))));
	caller = new ProfileMethod(line.substring(idx + 1,(idx = line.lastIndexOf((int) ' "))));
	time = Integer.parseInt(line.substring(idx+1));
Methods Summary
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");
	callee.appendTo(s);
	s.append(' ");
	caller.appendTo(s);