Unnamed: 0 int64 0 305k | body stringlengths 7 52.9k | name stringlengths 1 185 |
|---|---|---|
270,500 | void () { String myWeirdExtension = "my_weird_extension"; Disposable disposable = Disposer.newDisposable(); try { FileType myType = createFakeType("myType", "myDisplayName", "myDescription", myWeirdExtension, disposable); myFileTypeManager.getRemovedMappingTracker().add(new ExtensionFileNameMatcher(myWeirdExtension), m... | testFileTypeManagerInitMustReadRemovedMappingBeforeShowingConflictNotification2 |
270,501 | FileType () { return myFileTypeManager.getFileTypeByFile(this); // otherwise this call will be redirected to FileTypeManger.getInstance() which is not what we are testing } | getFileType |
270,502 | boolean () { return false; //to avoid detect by content } | isValid |
270,503 | void (@NonNls String text, @NonNls String expected, @Nullable String expectedSeparator) { LightVirtualFile vFile = new LightVirtualFile("test.txt"); CharSequence real = LoadTextUtil.getTextByBinaryPresentation(text.getBytes(StandardCharsets.US_ASCII), vFile); assertTrue("content", Comparing.equal(expected, real)); if (... | doTest |
270,504 | void () { doTest("test", "test", null); } | testSimpleLoad |
270,505 | void () { doTest("test\rtest\rtest", "test\ntest\ntest", "\r"); } | testConvert_SlashR |
270,506 | void () { doTest("test\ntest\ntest", "test\ntest\ntest", "\n"); } | testConvert_SlashN |
270,507 | void () { doTest("test\r\ntest\r\ntest", "test\ntest\ntest", "\r\n"); } | testConvert_SlashR_SlashN |
270,508 | void () { doTest("test\r\ntest\r\ntest\ntest", "test\ntest\ntest\ntest", "\r\n"); } | testConvertMostCommon |
270,509 | void () { openFiles(STRING.replace("pinned=\"true\"", "pinned=\"false\"")); assertOpenFiles("1.txt", "foo.xml", "2.txt", "3.txt"); manager.closeAllFiles(); openFiles(STRING); assertOpenFiles("foo.xml", "1.txt", "2.txt", "3.txt"); } | testTabOrder |
270,510 | void () { UISettings.getInstance().getState().setEditorTabLimit(2); openFiles(STRING); // note that foo.xml is pinned assertOpenFiles("foo.xml", "3.txt"); } | testTabLimit |
270,511 | void () { manager.closeAllFiles(); UISettings.getInstance().getState().setEditorTabLimit(3); manager.openFile(getFile("/src/1.txt"), true); manager.openFile(getFile("/src/2.txt"), true); manager.openFile(getFile("/src/3.txt"), true); manager.openFile(getFile("/src/foo.xml"), true); assertOpenFiles("2.txt", "3.txt", "fo... | testTabLimit2 |
270,512 | void () { manager.openFile(getFile("/src/test.ipynb"), true); manager.closeAllFiles(); manager.openFile(getFile("/src/1.txt"), true); UISettings.getInstance().getState().setEditorTabLimit(1); manager.openFile(getFile("/src/test.ipynb"), true); assertOpenFiles("test.ipynb"); } | testTabLimitWithJupyterNotebooks |
270,513 | void () { UISettings.getInstance().getState().setEditorTabLimit(1); openFiles(STRING.replace("pinned=\"true\"", "pinned=\"false\"")); assertOpenFiles("3.txt"); manager.closeAllFiles(); openFiles(STRING); // note that foo.xml is pinned assertOpenFiles("foo.xml"); manager.openFile(getFile("/src/3.txt"), true); // the lim... | testSingleTabLimit |
270,514 | void () { UISettingsState uiSettings = UISettings.getInstance().getState(); uiSettings.setEditorTabLimit(2); uiSettings.setReuseNotModifiedTabs(false); manager.openFile(getFile("/src/3.txt"), true); manager.openFile(getFile("/src/foo.xml"), true); assertOpenFiles("3.txt", "foo.xml"); uiSettings.setEditorTabLimit(1); ca... | testReuseNotModifiedTabs |
270,515 | void () { for (EditorsSplitters each : manager.getAllSplitters()) { each.trimToSize(); } } | callTrimToSize |
270,516 | void () { FileEditorProvider.EP_FILE_EDITOR_PROVIDER.getPoint().registerExtension(new MyFileEditorProvider(), myFixture.getTestRootDisposable()); openFiles(""" <component name="FileEditorManager"> <leaf> <file pinned="false" current="true" current-in-tab="true"> <entry selected="true" file="file://$PROJECT_DIR$/src/1.t... | testOpenRecentEditorTab |
270,517 | void () { FileEditorProvider.EP_FILE_EDITOR_PROVIDER.getPoint().registerExtension(new MyFileEditorProvider(), myFixture.getTestRootDisposable()); VirtualFile file = getFile("/src/1.txt"); assertNotNull(file); FileEditor[] editors = manager.openFile(file, true); assertEquals(2, editors.length); assertEquals("Text", mana... | testTrackSelectedEditor |
270,518 | void () { VirtualFile file = getFile("/src/1.txt"); assertNotNull(file); manager.openFile(file, false); EditorWindow primaryWindow = manager.getCurrentWindow(); assertNotNull(primaryWindow); manager.createSplitter(SwingConstants.VERTICAL, primaryWindow); EditorWindow secondaryWindow = manager.getNextWindow(primaryWindo... | testWindowClosingRetainsOtherWindows |
270,519 | void () { VirtualFile file1 = getFile("/src/1.txt"); assertNotNull(file1); manager.openFile(file1, false); VirtualFile file2 = getFile("/src/2.txt"); assertNotNull(file2); manager.openFile(file2, true); EditorWindow primaryWindow = manager.getCurrentWindow();//1.txt and selected 2.txt assertNotNull(primaryWindow); mana... | testOpenFileInTablessSplitter |
270,520 | void () { UISettings.getInstance().setEditorTabPlacement(UISettings.TABS_NONE); VirtualFile file = getFile("/src/Test.java"); assertNotNull(file); Assume.assumeTrue("JAVA".equals(file.getFileType().getName())); // otherwise, the folding would be incorrect FileEditor[] editors = manager.openFile(file, false); assertEqua... | testStoringCaretStateForFileWithFoldingsWithNoTabs |
270,521 | void () { FileEditorProvider.EP_FILE_EDITOR_PROVIDER.getPoint().registerExtension(new MyFileEditorProvider(), myFixture.getTestRootDisposable()); FileEditorProvider.EP_FILE_EDITOR_PROVIDER.getPoint().registerExtension(new MyDumbAwareProvider(), myFixture.getTestRootDisposable()); VirtualFile createdFile = DumbModeTestU... | testOpenInDumbMode |
270,522 | void () { FileEditorProvider.EP_FILE_EDITOR_PROVIDER.getPoint() .registerExtension(new MyTextEditorProvider("one", 1), myFixture.getTestRootDisposable()); FileEditorProvider.EP_FILE_EDITOR_PROVIDER.getPoint() .registerExtension(new MyTextEditorProvider("two", 2), myFixture.getTestRootDisposable()); Project project = ge... | testOpenSpecificTextEditor |
270,523 | void () { VirtualFile file = createFile("/src/foo.bar", new byte[]{1, 0, 2, 3}); FileEditorProvider.EP_FILE_EDITOR_PROVIDER.getPoint().registerExtension(new MyDefaultEditorProvider( "t_default", "default"), myFixture.getTestRootDisposable()); manager.openFile(file, false); assertOpenedFileEditorsNames(file, "default");... | testHideDefaultEditor |
270,524 | void () { VirtualFile file = createFile("/src/foo.bar", new byte[]{1, 0, 2, 3}); FileEditorProvider.EP_FILE_EDITOR_PROVIDER.getPoint().registerExtension(new MyDefaultEditorProvider( "t_default", "default"), myFixture.getTestRootDisposable()); FileEditorProvider.EP_FILE_EDITOR_PROVIDER.getPoint().registerExtension(new M... | testHideOtherEditors |
270,525 | void () { VirtualFile file = getFile("/src/1.txt"); VirtualFile file2 = getFile("/src/2.txt"); manager.openFile(file, false); EditorWindow primaryWindow = manager.getCurrentWindow(); assertNotNull(primaryWindow); manager.createSplitter(SwingConstants.VERTICAL, primaryWindow); EditorWindow secondaryWindow = manager.getN... | testDontOpenInActiveSplitter |
270,526 | void () { ((AdvancedSettingsImpl) AdvancedSettings.getInstance()).setSetting(FileEditorManagerImpl.EDITOR_OPEN_INACTIVE_SPLITTER, false, getTestRootDisposable()); VirtualFile file = getFile("/src/1.txt"); VirtualFile file2 = getFile("/src/2.txt"); manager.openFile(file, false); EditorWindow primaryWindow = manager.getC... | testOpenInActiveSplitter |
270,527 | void () { ((AdvancedSettingsImpl) AdvancedSettings.getInstance()).setSetting(FileEditorManagerImpl.EDITOR_OPEN_INACTIVE_SPLITTER, false, getTestRootDisposable()); VirtualFile file = getFile("/src/1.txt"); VirtualFile file2 = getFile("/src/2.txt"); manager.openFile(file, false); EditorWindow primaryWindow = manager.getC... | testOpenInActiveSplitterOverridesReuseOpen |
270,528 | void () { manager.openFile(getFile("/src/1.txt"), false); EditorWindow currentWindow = manager.getCurrentWindow(); VirtualFile expectedFile = getFile("/src/2.txt"); manager.openFile(expectedFile, false); manager.createSplitter(SwingConstants.VERTICAL, currentWindow); VirtualFile actualFile = manager.getPrevWindow(curre... | testGetPreviousWindow |
270,529 | void (String... fileNames) { List<String> names = ContainerUtil.map(manager.getSplitters().getAllComposites(), composite -> composite.getFile().getName()); assertEquals(Arrays.asList(fileNames), names); } | assertOpenFiles |
270,530 | void (VirtualFile file, String... allNames) { FileEditor[] editors = manager.getEditors(file); assertEquals(allNames.length, editors.length); List<String> expectedNames = Arrays.asList(allNames); List<String> actualNames = ContainerUtil.map(editors, FileEditor::getName); if (!actualNames.containsAll(expectedNames)) { f... | assertOpenedFileEditorsNames |
270,531 | String () { return PlatformTestUtil.getPlatformTestDataPath() + "fileEditorManager"; } | getTestDataPath |
270,532 | String () { return myEditorTypeId; } | getEditorTypeId |
270,533 | boolean (@NotNull Project project, @NotNull VirtualFile file) { return true; } | accept |
270,534 | boolean () { return false; } | acceptRequiresReadAction |
270,535 | FileEditor (@NotNull Project project, @NotNull VirtualFile file) { return new Mock.MyFileEditor() { @Override public @NotNull JComponent getComponent() { return new JLabel(); } @Override public @NotNull String getName() { return myFileEditorName; } @Override public @NotNull VirtualFile getFile() { return file; } }; } | createEditor |
270,536 | JComponent () { return new JLabel(); } | getComponent |
270,537 | String () { return myFileEditorName; } | getName |
270,538 | VirtualFile () { return file; } | getFile |
270,539 | void (@NotNull FileEditor editor) { } | disposeEditor |
270,540 | FileEditorPolicy () { return myPolicy; } | getPolicy |
270,541 | boolean (@NotNull Project project, @NotNull VirtualFile file) { return true; } | accept |
270,542 | boolean () { return false; } | acceptRequiresReadAction |
270,543 | FileEditor (@NotNull Project project, @NotNull VirtualFile file) { return new MyTextEditor(file, FileDocumentManager.getInstance().getDocument(file), myId, myTargetOffset); } | createEditor |
270,544 | String () { return myId; } | getEditorTypeId |
270,545 | FileEditorPolicy () { return FileEditorPolicy.HIDE_DEFAULT_EDITOR; } | getPolicy |
270,546 | void () { try { EditorFactory.getInstance().releaseEditor(myEditor); } finally { super.dispose(); } } | dispose |
270,547 | JComponent () { return new JLabel(); } | getComponent |
270,548 | String () { return myName; } | getName |
270,549 | Editor () { return myEditor; } | getEditor |
270,550 | boolean (@NotNull Navigatable navigatable) { return navigatable instanceof OpenFileDescriptor && ((OpenFileDescriptor)navigatable).getOffset() == myTargetOffset; } | canNavigateTo |
270,551 | void (@NotNull Navigatable navigatable) {} | navigateTo |
270,552 | VirtualFile () { return myFile; } | getFile |
270,553 | void () { PlatformTestUtil.saveProject(getProject(), true); VirtualFile fileUnderProjectDir = createFileExternally(new File(getProject().getBasePath())); assertFalse(ProjectFileIndex.getInstance(getProject()).isInContent(fileUnderProjectDir)); typeAndCheck(getProject().getProjectFile(), true); typeAndCheck(getProject()... | testAccessToProjectSystemFiles |
270,554 | void () { VirtualFile nonProjectFile1 = createProjectFile(); VirtualFile nonProjectFile2 = createProjectFile(); typeAndCheck(nonProjectFile1, true); typeAndCheck(nonProjectFile2, true); List<VirtualFile> denied = new ArrayList<>(); registerAccessCheckExtension(Collections.emptyList(), denied); typeAndCheck(nonProjectFi... | testCheckingExtensionsForNonWritableFiles |
270,555 | void () { NonProjectFileWritingAccessProvider.enableChecksInTests(true, getProject()); VirtualFile nonProjectFile = createProjectFile(); List<VirtualFile> denied = new ArrayList<>(); registerAccessCheckExtension(Collections.emptyList(), denied); denied.add(nonProjectFile); typeAndCheck(nonProjectFile, false); denied.cl... | testEditingRecentFilesRegardlessExtensions |
270,556 | Set<VirtualFile> (final VirtualFile... filesToDeny) { final Set<VirtualFile> requested = new LinkedHashSet<>(); ServiceContainerUtil.registerExtension(getProject(), WritingAccessProvider.EP, new WritingAccessProvider() { @NotNull @Override public Collection<VirtualFile> requestWriting(@NotNull Collection<? extends Virt... | registerWriteAccessProvider |
270,557 | Collection<VirtualFile> (@NotNull Collection<? extends VirtualFile> files) { requested.addAll(files); Set<VirtualFile> denied = ContainerUtil.newHashSet(filesToDeny); denied.retainAll(files); return denied; } | requestWriting |
270,558 | void (Collection<VirtualFile> filesToAllow, Collection<VirtualFile> filesToDeny) { ServiceContainerUtil.registerExtension(getProject(), NonProjectFileWritingAccessExtension.EP_NAME, new NonProjectFileWritingAccessExtension() { @Override public boolean isWritable(@NotNull VirtualFile file) { return filesToAllow.contains... | registerAccessCheckExtension |
270,559 | boolean (@NotNull VirtualFile file) { return filesToAllow.contains(file); } | isWritable |
270,560 | boolean (@NotNull VirtualFile file) { return filesToDeny.contains(file); } | isNotWritable |
270,561 | VirtualFile () { return createFileExternally(new File(ModuleRootManager.getInstance(myModule).getContentRoots()[0].getPath())); } | createProjectFile |
270,562 | VirtualFile (File dir) { VirtualFile result; try { result = WriteAction.computeAndWait(() -> { // create externally, since files created via VFS are marked for editing automatically File file = new File(dir, FileUtil.createSequentFileName(dir, "extfile", "txt")); assertTrue(file.createNewFile()); return LocalFileSystem... | createFileExternally |
270,563 | void (VirtualFile file, boolean fileHasBeenChanged) { typeAndCheck(file, null, fileHasBeenChanged); } | typeAndCheck |
270,564 | void (VirtualFile file, @Nullable final UnlockOption option, boolean fileHasBeenChanged) { Editor editor = getEditor(file); NullableFunction<List<VirtualFile>, UnlockOption> unlocker = files -> option; NonProjectFileWritingAccessProvider.setCustomUnlocker(unlocker); String before = editor.getDocument().getText(); typeI... | typeAndCheck |
270,565 | Editor (VirtualFile file) { Editor editor = FileEditorManager.getInstance(getProject()).openTextEditor(new OpenFileDescriptor(getProject(), file, 0), false); EditorTestUtil.waitForLoading(editor); return editor; } | getEditor |
270,566 | void (Editor e, char c) { getActionManager(); TypedAction.getInstance().actionPerformed(e, c, createDataContextFor(e)); } | typeInChar |
270,567 | DataContext (final Editor editor) { return dataId -> { if (CommonDataKeys.EDITOR.is(dataId)) return editor; if (CommonDataKeys.PROJECT.is(dataId)) return getProject(); return null; }; } | createDataContextFor |
270,568 | EditorActionManager () { return EditorActionManager.getInstance(); } | getActionManager |
270,569 | void () { UniqueNameBuilder<String> builder = new UniqueNameBuilder<>("", "/"); builder.addPath("A", "/Users/yole/idea/foo/bar.java"); builder.addPath("B", "/Users/yole/idea/baz/bar.java"); assertEquals("foo/bar.java", builder.getShortPath("A")); } | testSimple |
270,570 | void () { UniqueNameBuilder<String> builder = new UniqueNameBuilder<>("", "/"); builder.addPath("A", "/Users/yole/idea/foo/buy/index.html"); builder.addPath("B", "/Users/yole/idea/bar/buy/index.html"); assertEquals("foo/\u2026/index.html", builder.getShortPath("A")); } | testTwoLevel |
270,571 | void () { UniqueNameBuilder<String> builder = new UniqueNameBuilder<>("", "/"); builder.addPath("A", "/Users/yole/idea/foo/before/somedir/index.html"); builder.addPath("A2", "/Users/yole/idea/foo/after/somedir/index.html"); builder.addPath("A3", "/Users/yole/fabrique/foo/before/somedir/index.html"); builder.addPath("B"... | testThreeLevel |
270,572 | void () { UniqueNameBuilder<String> builder = new UniqueNameBuilder<>("", "\\"); builder.addPath("A", "/Users/yole/idea/foo/buy/index.html"); builder.addPath("B", "/Users/yole/idea/bar/buy/index.html"); assertEquals("foo\\\u2026\\index.html", builder.getShortPath("A")); } | testSeparator |
270,573 | void () { UniqueNameBuilder<String> builder = new UniqueNameBuilder<>("/Users/yole/idea", "/"); builder.addPath("A", "/Users/yole/idea/build/scripts/layouts.gant"); builder.addPath("B", "/Users/yole/idea/community/build/scripts/layouts.gant"); assertEquals("build/\u2026/layouts.gant", builder.getShortPath("A")); assert... | testRoot |
270,574 | void () { UniqueNameBuilder<String> builder = new UniqueNameBuilder<>("/Users/yole/idea", "/"); builder.addPath("A", "/Users/yole/idea/build/scripts/layouts.gant"); builder.addPath("B", "/Users/yole/idea/community/build/scripts/layouts.gant"); assertEquals("build/\u2026/layouts.gant", builder.getShortPath("A")); assert... | testShortenNames |
270,575 | void () { UniqueNameBuilder<String> builder = new UniqueNameBuilder<>("/Users/yole/idea", "/"); builder.addPath("A", "/Users/yole/idea/pycharm/download/index.html"); builder.addPath("B", "/Users/yole/idea/pycharm/documentation/index.html"); builder.addPath("C", "/Users/yole/idea/fabrique/download/index.html"); assertEq... | testShortenNamesUnique |
270,576 | void () { UniqueNameBuilder<String> builder = new UniqueNameBuilder<>("/Users/yole/idea", "/"); builder.addPath("A", "source/components/views/something/tmpl/default.php"); builder.addPath("B", "source/components/views/something_else/tmpl/default.php"); assertEquals("something/\u2026/default.php", builder.getShortPath("... | testShortenNamesUnique2 |
270,577 | void () { UniqueNameBuilder<String> builder = new UniqueNameBuilder<>("", "/"); builder.addPath("A", "foo/.htaccess"); builder.addPath("B", "bar/.htaccess"); String shortPath = builder.getShortPath("A"); assertEquals("foo/.htaccess", UniqueNameEditorTabTitleProvider.Companion.getEditorTabText(shortPath, builder.getSepa... | testFilesWithoutExtensions |
270,578 | void () { final Document cachedDocument = myDocumentManager.getCachedDocument(new MockVirtualFile("test.txt")); assertNull(cachedDocument); } | testGetCachedDocument_Cached |
270,579 | void () { final Document[] unsavedDocuments = myDocumentManager.getUnsavedDocuments(); assertEquals(0, unsavedDocuments.length); } | testGetUnsavedDocuments_NoDocuments |
270,580 | void () { final VirtualFile file = new MockVirtualFile("test.txt", "test\rtest"); Document document = myDocumentManager.getDocument(file); assertNotNull(file.toString(), document); assertEquals("test\ntest", document.getText()); } | testConvertSeparators |
270,581 | void () { final VirtualFile file = new MockVirtualFile("test.txt", "test\rtest") { @NotNull @Override public OutputStream getOutputStream(final Object requestor, final long newModificationStamp, long newTimeStamp) { final VirtualFile self = this; return new ByteArrayOutputStream() { @Override public void close() throws... | testContentChanged_ignoreEventsFromSelfOnSave |
270,582 | OutputStream (final Object requestor, final long newModificationStamp, long newTimeStamp) { final VirtualFile self = this; return new ByteArrayOutputStream() { @Override public void close() throws IOException { super.close(); long oldStamp = getModificationStamp(); setModificationStamp(newModificationStamp); setText(to... | getOutputStream |
270,583 | void (@NotNull Document documentToSave) { assertNotSame(document, documentToSave); } | beforeDocumentSaving |
270,584 | void () { final MockVirtualFile file = new MockVirtualFile("test.txt", "test\rtest") { @Override public void refresh(boolean asynchronous, boolean recursive, Runnable postRunnable) { long oldStamp = getModificationStamp(); setModificationStamp(LocalTimeCounter.currentTime()); myDocumentManager.contentsChanged(new VFile... | _testContentChanged_reloadChangedDocumentOnSave |
270,585 | void (boolean asynchronous, boolean recursive, Runnable postRunnable) { long oldStamp = getModificationStamp(); setModificationStamp(LocalTimeCounter.currentTime()); myDocumentManager.contentsChanged(new VFileContentChangeEvent(null, this, oldStamp, getModificationStamp())); } | refresh |
270,586 | void () { final MockVirtualFile file = new MockVirtualFile("test.txt", "test") { @Override public void refresh(boolean asynchronous, boolean recursive, Runnable postRunnable) { long oldStamp = getModificationStamp(); setModificationStamp(LocalTimeCounter.currentTime()); myDocumentManager.contentsChanged(new VFileConten... | testContentChanged_doNotReloadChangedDocumentOnSave |
270,587 | void (boolean asynchronous, boolean recursive, Runnable postRunnable) { long oldStamp = getModificationStamp(); setModificationStamp(LocalTimeCounter.currentTime()); myDocumentManager.contentsChanged(new VFileContentChangeEvent(null, this, oldStamp, getModificationStamp())); } | refresh |
270,588 | void (@NotNull Document documentToSave) { assertNotSame(document, documentToSave); } | beforeDocumentSaving |
270,589 | void () { File ioFile = IoTestUtil.createTestFile("test.txt", "<html>some text</html>"); VirtualFile virtualFile = LocalFileSystem.getInstance().refreshAndFindFileByIoFile(ioFile); assertNotNull(ioFile.getPath(), virtualFile); FileDocumentManager documentManager = FileDocumentManager.getInstance(); Document original = ... | testNoPSIModificationsDuringSave |
270,590 | void (@NotNull Document document) { WriteCommandAction.runWriteCommandAction(getProject(), () -> { try { file.getFirstChild().delete(); fail("Must not modify PSI inside save listener"); } catch (IncorrectOperationException e) { assertEquals("Must not modify PSI inside save listener", e.getMessage()); } }); } | beforeDocumentSaving |
270,591 | void (@NotNull DocumentEvent e) { assertFalse(manager.isDocumentUnsaved(document)); } | beforeDocumentChange |
270,592 | void (@NotNull DocumentEvent event) { invoked.incrementAndGet(); assertEquals(expectUnsaved.get(), manager.isDocumentUnsaved(document)); } | documentChanged |
270,593 | void (@NotNull Document document, boolean explicit) { firedDocuments.add(document); } | beforeAnyDocumentSaving |
270,594 | void (@NotNull Document document, boolean explicit) { firedDocuments.add(document); } | beforeAnyDocumentSaving |
270,595 | void (@NotNull Document document) { reallySavedDocuments.add(document); assertOrderedEquals(firedDocuments, document); } | beforeDocumentSaving |
270,596 | List<VirtualFile> () { List<VirtualFile> allFiles = new ArrayList<>(); for (int i = 0; i < 5; i++) { allFiles.add(new LightVirtualFile("b" + i + ".txt", "b" + i)); } return allFiles; } | createNonPhysicalFiles |
270,597 | FileEditorState (@NotNull FileEditorStateLevel level) { return myEditorState; } | getState |
270,598 | void (@NotNull FileEditorState state) { myEditorState = state; } | setState |
270,599 | VirtualFile () { return mySelectedFile; } | getFile |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.