AskMeAgain

- 活动总数 57
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 4
- 订阅数 19
-
创建于 How to change cursor via code?
已回答Hi, i would like to change the cursor via code sometimes to signal that something is happening in the background. Is something like this possible? -
创建于 PluginVerifier doesnt find package
已回答Hi, I get the following error when upload a plugin: Package 'feign' is not found along with its 5 classes. I added the dependencies via gradle: dependencies { implementation 'io.github.openfeign... -
已编辑于 How to insert a node into a Tree without reloading everything?
已回答Hi, i created a "tree": var tree = new Tree(node); now i want to insert a node "dynamically" into it via an action: var treeModel = (DefaultTreeModel)tree.getModel(); treeModel.insertNodeInto(newCh... -
创建于 How would you add a new (ephemeral) file to the project?
已回答Hi, How would i add reference navigation to a piece of code? Say i have a button which downloads code from the internet. How can i present this code to the user and the user is able to "navigate" f... -
创建于 How to color code folds created via code?
已回答Hi, i have a custom editor and i want to added some code folds via editor.getFoldingModel().createFoldRegion() the question now is, how can i color these folds when they are collapsed? Right now t... -
创建于 Returntype of PsiMethodCallExpression is Object
已回答Hi, i have the following PsiMethodCallExpression: optObj.map(x -> new AnotherObject(anotherInput)).orElse(new AnotherObject()) When i call .getType(), the returnType is Object. optObj is of type Op... -
创建于 How to test a dialog/how to pass data to action for testing?
已回答Hi, My action needs some external data, which the user will providevia a dialog: Action -> Open Dialog -> Compute Apparently writing a test for this is not possible after some google search. (also ... -
已编辑于 Best way to analyze part of code, with working references?
已回答Hi, i am writing a plugin, where the user is selecting some code (within a method for example) and i run some analyzer on top of the selected code. What iam currently doing is creating a codeblock ... -
已编辑于 Is it possible to extend/change current gui windows?
已回答Hi, sometimes i would like to add a button/checkbox to existing GUI and enhance the current functionality. Is something like this possible? For example: add a new checkbox to the commit dialog o... -
创建于 How to get type of any psiElement?
已回答Hi, i have problems getting any PsiType or PsiClass info from some psi elements: PsiLocalVariable: how do i get the resulting type? PsiDeclarationStatement: how do i get the type of the declaratio...