}
IProject prj = ((IFileEditorInput) getEditorInput()).getFile()
.getProject();
IJavaProject create = JavaCore.create(prj);
AccumulatedMethod m = (AccumulatedMethod) object;
IType findType;
try {
String replace = m.getClassName().replace('$', '.');
findType = tp.get(replace);
if (findType == null) {
findType = create.findType(replace);
tp.put(replace, findType);
}