Currently, my eclipse source folder displays the entire package path and java files under this path. Are there any settings that I change and see subpackages + (java) files in the parent packages.
eg,
src/main/java
com.company.packageA
a.java
com.company.packageA.subpackageA
suba.java
becomes
src/main/java
com.company.packageA
subpackageA
a.java
source
share