Examples of ErlTextMemberSelection


Examples of org.erlide.wrangler.refactoring.selection.internal.ErlTextMemberSelection

     * @param _editor
     *            stored editor
     */
    public static void setEditor(final IEditorPart _editor) {
        editor = _editor;
        wranglerSelection = new ErlTextMemberSelection((ITextEditor) editor);
    }
View Full Code Here

Examples of org.erlide.wrangler.refactoring.selection.internal.ErlTextMemberSelection

                final IWorkbench instance = PlatformUI.getWorkbench();
                final IWorkbenchWindow activeWorkbenchWindow = instance
                        .getActiveWorkbenchWindow();
                editor = activeWorkbenchWindow.getActivePage().getActiveEditor();

                wranglerSelection = new ErlTextMemberSelection(
                        (ITextSelection) selection, (ITextEditor) editor);
            } else if (selection instanceof ITreeSelection) {
                final Object firstElement = ((ITreeSelection) selection)
                        .getFirstElement();
                if (firstElement instanceof IErlElement) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.