Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
Sign in
Milligangregg
Total activity
11
Last activity
August 04, 2020 23:12
Member since
July 23, 2020 19:20
Following
0 users
Followed by
0 users
Votes
1
Subscriptions
1
Activity overview
Posts (1)
Comments (8)
Sort by recent activity
Recent activity
Votes
Created
August 04, 2020 23:12
Thank you, Alexander. This worked for me. In addition to adding this to the build.gradle file: intellij { version '2020.1.3' plugins 'java' <--- added this} I also had to add this to the...
Community
IntelliJ IDEA Open API and Plugin Development
How do I listen to Debugger events within my own intellij Java/Gradle plugin?
0 votes
Created
August 04, 2020 16:46
Alexander Zolotov I think this is what I need here: com.intellij.debugger.engine.JavaStackFrame This may be a straight forward and simple question, since I'm new to intellij plugin development; Is ...
Community
IntelliJ IDEA Open API and Plugin Development
How do I listen to Debugger events within my own intellij Java/Gradle plugin?
0 votes
Created
August 03, 2020 23:03
It looks like JavaStackFrame is special, in that I can't use the usual Alt + Enter to choose to import it. Is there an additional way to include this dependency into the file, for example, somet...
Community
IntelliJ IDEA Open API and Plugin Development
How do I listen to Debugger events within my own intellij Java/Gradle plugin?
0 votes
Created
August 03, 2020 02:01
This is brilliant; it helped out a lot. I'm very grateful for your help. I was able to get past my roadblock. Would you mind helping with my next goal? I am looking at how to get the name of t...
Community
IntelliJ IDEA Open API and Plugin Development
How do I listen to Debugger events within my own intellij Java/Gradle plugin?
0 votes
Created
July 30, 2020 01:36
Thank you for your patience. I am having difficult understanding how I can use the example code inside my plugin. In the example, I see there is an XValueContainer.computeChildren (line 196). Al...
Community
IntelliJ IDEA Open API and Plugin Development
How do I listen to Debugger events within my own intellij Java/Gradle plugin?
0 votes
Created
July 28, 2020 21:29
Just revisiting this to see if I can find out how to retrieve debugger values by looking at the platform.api.jar... I see in this file:com\intellij\xdebugger\frame\XCompositeNode.javaIt looks like ...
Community
IntelliJ IDEA Open API and Plugin Development
How do I listen to Debugger events within my own intellij Java/Gradle plugin?
0 votes
Created
July 26, 2020 13:50
And this is what I'm trying to get in the code: All variable names in the frame (done) All variable values in the frame (this is what I'm asking for help with) The name of the function where execu...
Community
IntelliJ IDEA Open API and Plugin Development
How do I listen to Debugger events within my own intellij Java/Gradle plugin?
0 votes
Created
July 26, 2020 01:55
If you wouldn't mind answering another question... This first part works like a charm, thank you for pointing me in the right direction towards subscribing to debugger events; The code that I have ...
Community
IntelliJ IDEA Open API and Plugin Development
How do I listen to Debugger events within my own intellij Java/Gradle plugin?
0 votes