This method was created by a SmartGuide.
this.method= method;
int idx = method.indexOf('.");
if (idx == -1)
{
classname = "unknown";
methodname = "unkown";
args = ProfileMethodClass.getClasses("");
returnclass = (ProfileMethodClass.getClasses("V"))[0];
return;
}
classname = method.substring(0,idx).replace('/",'.");
methodname = method.substring(idx+1, (idx = method.indexOf('(")));
args = ProfileMethodClass.getClasses(method.substring(idx+1, (idx = method.indexOf(')"))));
returnclass = (ProfileMethodClass.getClasses(method.substring(idx+1)))[0];
// classDotMethodname = classname + "." + methodname;