IntelliJ IDEA. It is info menu (when you stop cursor on class name). How to enable view full location of class (file)? Example: Oleg_Library.main.java.src.mypackage.Test Answer It’s not possible afaik. But you can create a feature request for it in https://youtrack.jetbrains.com/issues/IDEA
Tag: ide
How can I specify the order of imports in intellij IDEA?
Intellij keeps reordering my imports like so: Whereas our maven checkstyle wants the order like so: I should also point out, that this doesn’t apply to all the imports, only some of them. I’d like to set it so intellij organises all packages that end with a * to be sorted above fully qualified imports on the same path? So
Java/IntelliJ: shortcut to insert comment directly next to code instead of at start of line [macOS]
When I use the default commenting shortcut in IntelliJ (cmd + /) it inserts the // comment line at the first position of the line like so: Coming from vscode / javascript, I’m used to the commenting shortcut tucking the comment in directly to the left of the text of a line, preserving the indents: Is there a way to
OpenJDK 8 interpreter debug
I want to see how the JVM interpreter works. Can I track function calls using NetBeans or GDB? And how will it be more convenient to do this? I’m interested in starting HelloWorld with the -Xint option and see what steps are taken and see the interpreter source code. I mean not only the result of the interpreter, but also
How to load a class from module(.jmod) file at runtime?
I want to load classes from a module (.jmod) file at runtime into the application memory. I know that we can easily load classes from a (.jar) file using 🙂 The total code snippet can be found at this-repo in src omega.deassembler.JarLoader class But the problem is URLClassLoader is unable to read the modules(.jmod). So is there any other internal
NoClassDefFoundError: org/testng/TestNG
This error NoClassDefFoundError: org/testng/TestNG appears when I’m trying to run my test from Testng.xml file using IntelliJ IDEA. Running my test one by one works perfectly as well as running whole gradle project which points to testng.xml, like grade core-test:test ( On my project I’m using Appium + IntelliJ + TestNG ) But when I’m running testng.xml using IntelliJ I’m
Unable to save settings : IntelliJ IDEA
I use IntelliJ IDEA 15 and have a problem with the auto-saving. For example I make a new configuration, e.g. Show the line number. When I close IntelliJ and reopen my IDE, it doesn’t save my configuration and shows me this message: Unable to save settings : Failed to save settings . Please restart IntelliJ IDEA Answer I get this
How to enable CSS editing in Intellij
I just switched to IntelliJ IDEA because I thought it would be great for developing JavaFX application. I must be doing something wrong because when I am editing a CSS file, there is no code-completion. When I am trying to create a new CSS file there is no option for CSS files. I am using the community version of IntelliJ.
Space Error in Intelliji IDE – Intellij.ide.SystemHealthMonitor – Low disk space on a IntelliJ IDEA system directory partition [closed]
Closed. This question needs details or clarity. It is not currently accepting answers. Want to improve this question? Add details and clarify the problem by editing this post. Closed 7 years ago. Improve this question Due to low running memory – Intelliji is consistently throwing a pop up error “low disk space error in intelliJ IDE.”(repeatedly) Version – IntelliJ Idea
package android.support.v4.app does not exist ; in Android studio 0.8
I’ve recently updated the android studio IDE to 0.8 to work with the new android L SDK. To start I imported a finished android project that receives no errors in the older version of android studio. In version 0.8 i lines such as import android.support.v4.app.Fragment; get: Support cannot be resolved causing the rest of the code to have errors. The