Package org.eclipse.dltk.internal.debug.ui

Examples of org.eclipse.dltk.internal.debug.ui.ExternalFileEditorInput


  public IEditorInput getEditorInput(Object element) {
    if (element instanceof IFile) {
      return new FileEditorInput((IFile) element);
    }
    if (element instanceof IFileHandle) {
      return new ExternalFileEditorInput((IFileHandle) element);
    }
    if (element instanceof ILineBreakpoint) {
      return getLineBreakpointEditorInput(element);
    }
    if (element instanceof IStorage) {
View Full Code Here

TOP

Related Classes of org.eclipse.dltk.internal.debug.ui.ExternalFileEditorInput

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.