Package org.eclipse.jdt.internal.ui.javaeditor

Examples of org.eclipse.jdt.internal.ui.javaeditor.InternalClassFileEditorInput


                BytecodeOutlinePlugin.log(e, IStatus.ERROR);
            }
        } else if (input instanceof IClassFileEditorInput) {
            return (IClassFileEditorInput) input;
        } else if (input instanceof IClassFile) {
            return new InternalClassFileEditorInput((IClassFile) input);
        }

        return null;
    }
View Full Code Here

TOP

Related Classes of org.eclipse.jdt.internal.ui.javaeditor.InternalClassFileEditorInput

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.