Daniel Alexander Haak
- Total activity 71
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 4
- Subscriptions 16
-
Created How to use "JavaFX Runtime for Plugins"
AnsweredHello everybody, I want to write an dialog for a plugin. For this I want to use the "JavaFX Runtime for Plugins" Plugin. I added the " <depends>com.intellij.javafx</depends> to my plugin.xml but I... -
Created Creating dialog without ok and cancel button
AnsweredHello, is it possible to create a dialog without the "ok" and "cancel" button? Them not being disabled but not there at all. If now is there another option to create a free floating window where ... -
Created JPA Hibernate saving an Entity doesn't work in Intellij Plugin
AnsweredHello, I wrote a Library that utilizes JPA with a Hibernate distribution. Within that Library there is an Entity Class using a Key Class as Identifier. The Key Class consists of two Strings (uuid, ... -
Created Intellij Plugin clashes with JPA Hibernate
AnsweredHello, I build a little plugin for Intellij that also utilizes JPA with the Hibernate distribution. Unfortunaly the plugin isn't able to connect to a database. Every time i run the code of my DBC... -
Created NoClassDefFoundException in runIde gradle task
AnsweredHi Everybody, I wrote an Intellij Ide plugin and added several classes as dependency to the project: build.gradle: dependencies { implementation project(":model") implementation project(":... -
Created System.out.println() in Intellij Plugin
AnsweredHello Everyone, I have a bug in an Intellij plugin i have written, that only occurs if the plugin is installed (as opposed to running the plugin in debugger). So I need any means of debugging the ... -
Created Saving changes to document
AnsweredHello, I am currently writing a plugin. In this plugin i analyse files in Intellij and additionally with external code. Every time i change a file within intellij the changes get cached and the fi... -
Created Publishing intellij plugin
AnsweredSo i wrote my plugin and now want to publish it in the market place, https://plugins.jetbrains.com/docs/intellij/deployment.html this article helps a lot however there are two things that aren't ... -
Edited PSI Comment in php files
AnsweredHello everyone, i have a function iterating over a psifile and getting all child nodes of said file. If the psi file is a php.file the function excludes all comments in the file. Does anybody kno... -
Created forcing Intellij to use Headless mode?
AnsweredHello I am writing an idea plugin that also overwrites the Appstarter extension in order to run as command line app. I want it to run in Headless mode but whatever iI do it keeps opening the gui. ...