String classFileName = memento.getString(TAG_CLASS_FILE);
IFile file = ResourcesPlugin.getWorkspace().getRoot().getFile(
new Path(classFileName));
if (file != null) {
ToolClass cls = ToolClass.fetch(file);
ToolMethod method = cls.findMethod(methodName);
return new MethodEditorInput(method);
}
return null;
}
public static void saveState(IMemento memento, MethodEditorInput input) {