public Object getSourceElement(Object element) {
Object obj = super.getSourceElement(element);
if (obj == null) {
if (element instanceof IStackFrame) {
obj = new SourceNotFoundEditorInput((IStackFrame) element);
}
}
if (obj instanceof LocalFile && element instanceof IStackFrame) {
IStackFrame stackFrame = (IStackFrame) element;