Kata Zavor
- 活动总数 39
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 6
- 订阅数 11
-
创建于 PsiElementFinder analogue for Kotlin
已回答What 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 ... ... -
已编辑于 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... -
创建于 Intellij does not trigger custom ArchiveFileSystem (FileType added)
已回答I 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... -
创建于 Intellij does not trigger custom ArchiveFileSystem
已回答I 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... -
创建于 Guidance on creating custom ArchiveFileSystem
已回答What 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... -
已编辑于 Use javac API in plugin
已回答I 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.... -
已编辑于 Completion for inner classes returned by PsiElementFinder
已回答I 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...