Dan Cioca
- Total activity 363
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 122
-
-
-
Dan Cioca created a post, Open-api: Annotation based interception of arbitrary method execution
Is there an easy way to intercept arbitrary methods annotated with a specific marker annotation and execute code around them? I know that @org.jetbrains.annotations.NotNull is intercepted on runti... -
Dan Cioca created a post, [HOW-TO] prevent editor gutter actions from being displayed as intentions
Editor gutter annotations (implementing com.intellij.openapi.editor.markup.GutterIconRenderer) are reported as intentions as well (Alt-Enter). Is there a way to prevent them from being displayed in... -
Dan Cioca created a post, JDI and XDebugger Interface
Is there a simple way integrate JDI with the XDebugger interface? i.e. implement a debug process (configuration, starter and all...) that accepts and performs on a jdi VirtualMachine that I initial... -
Dan Cioca created a post, [HOWTO] Ignore Action text underscore mnemonic marker
The actions where text contains the underscore character, the presentation is interpreting the underscore as mnemonic marker (e.g "Some_Action" results in "Some Action").One way to avoid this witho... -
Dan Cioca created a post, [HOW-TO] enable debugging framework in 0xDBE
I see the XDebugger libraries are all present in 0xDBE, still, when i want to start my custom debug implementation (of DBNavigator) in 0xDBE, it doesn't find the debug executor. Digging further i s... -
Dan Cioca created a post, [HOWTO] Refresh javascript resources while debugging with Chrome
Debugging javascript within intellij is quite a nice feature, provided one could change the code and be able to reload it on client side. Currently reloading javascript code in chrome is only possi... -
Dan Cioca created a post, [HOWTO] XDebugger default tab selection (Console)
My debugger implementation based on the xdebugger api seems to prefer selecting the Console tab by default instead of the Debugger tab. i.e. every time i start a new debugging session, the debug to... -
Dan Cioca created a post, Receiving "The should return focus on closing the message" when using Messages.showDialog
I am sometimes receiving the following assertion exception when using Messages.showDialog(): "The should return focus on closing the message".Not sure what i am doing wrong. I am ensuring this runs...