if I have a library as a jar file - and decompile it using cfr or fernflower - can I then still import the source files using the same syntax as I would when it was still a jar? I.e. import com.hypixel.hytale.protocol.GameMode;
Im asking because Im trying to get intellisense in VS Code to follow referenes inside the jar. By default, I can ctrl click identifiers from my files into class files in the jar; but usually it doesnt let me do the same within the decompiled source of those class files.
So... I figured, maybe if I first decompiled the jar into a directory that could get resolved, but I cant seem to figure out how, or if I can just import these source files in the smae way I would a .jar
Addionally, being able to navigate java files using tools like file explorer as opposed to having to use specialized tools to navigate the .jar is a + for me.