Package com.intellij.ide.util

Examples of com.intellij.ide.util.FileStructurePopup


        if (fileEditor == null) {
            return;
        }
        StructureView structureView = new StructureViewComponent(fileEditor, viewModel, project, true);

        FileStructurePopup popup = createStructureViewPopup(project, fileEditor, structureView);
        popup.setTitle(psiFile.getName());
        popup.show();
    }
View Full Code Here


        popup.show();
    }

    @NotNull
    private static FileStructurePopup createStructureViewPopup(@NotNull Project project, @NotNull FileEditor fileEditor, @NotNull StructureView structureView) {
        return new FileStructurePopup(project, fileEditor, structureView, true);
    }
View Full Code Here

TOP

Related Classes of com.intellij.ide.util.FileStructurePopup

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.