Package org.eclipse.debug.internal.ui.views.launch

Examples of org.eclipse.debug.internal.ui.views.launch.SourceNotFoundEditorInput


  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;
View Full Code Here


  }

  public Object sourceNotFound(Object debugElement) {
    Object obj = null;
    if (debugElement instanceof IStackFrame) {
      obj = new SourceNotFoundEditorInput((IStackFrame) debugElement);
    }
    return obj;
  }
View Full Code Here

TOP

Related Classes of org.eclipse.debug.internal.ui.views.launch.SourceNotFoundEditorInput

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.