AskMeAgain

- Total activity 57
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 4
- Subscriptions 19
-
Created How to change cursor via code?
AnsweredHi, i would like to change the cursor via code sometimes to signal that something is happening in the background. Is something like this possible? -
Created PluginVerifier doesnt find package
AnsweredHi, 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... -
Edited How to insert a node into a Tree without reloading everything?
AnsweredHi, 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... -
Created How would you add a new (ephemeral) file to the project?
AnsweredHi, 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... -
Created How to color code folds created via code?
AnsweredHi, 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... -
Created Returntype of PsiMethodCallExpression is Object
AnsweredHi, 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... -
Created How to test a dialog/how to pass data to action for testing?
AnsweredHi, 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 ... -
Edited Best way to analyze part of code, with working references?
AnsweredHi, 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 ... -
Edited Is it possible to extend/change current gui windows?
AnsweredHi, 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... -
Created How to get type of any psiElement?
AnsweredHi, 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...