Kata Zavor
- Total activity 39
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 6
- Subscriptions 11
-
Created PsiElementFinder analogue for Kotlin
AnsweredWhat would be the analogue of PsiElementFinder for Kotlin files? As per documentation, PsiElementFinder allows extending the mechanism of locating classes and packages by full-qualified name ... ... -
Edited Make IntelliJ recognize files from archive of custom type
Situation: I have a project with a dependency on archive of custom type (`arc.abc`), which contains standard Java/Kotlin files, and nested zip/jar files. Task: When using `Some` class in a proje... -
Created Intellij does not trigger custom ArchiveFileSystem (FileType added)
AnsweredI tried implementing custom ArchiveFileSystem, but it is never triggered by the system. The goal is to be able to work with files from arc.abc archive the same way as with dependencies in .jar. Wha... -
Created Intellij does not trigger custom ArchiveFileSystem
AnsweredI tried implementing ArchiveFileSystem, but it is never triggered by the system. The goal is to be able to work with files from archivelib.abc the same way as with .jar dependencies. Here's the dum... -
Created Guidance on creating custom ArchiveFileSystem
AnsweredWhat would be the steps to create a custom FileSystem (similar to JarFileSystem)? For example, I might have an archive of binary files added as a library to the project (similar to JAR). And I want... -
Edited Use javac API in plugin
AnsweredI want to run custom AnnotationProcessor from the plugin and I've found that javac API can be invoked easily from the java code itself. Like compiler = ToolProvider.getSystemJavaCompiler();...task.... -
Edited Completion for inner classes returned by PsiElementFinder
AnsweredI want to provide additional Java classes without adding them to FileSystem. What I've done so far: I've implemented custom PsiElementFinder (methods #findClass, #findClasses). Symbols with qualif...