Java: Possible to consolidate empty subdirectories for packages that only contain other packages?

Posted by BinaryMuse on Stack Overflow See other posts from Stack Overflow or by BinaryMuse
Published on 2010-04-21T22:06:01Z Indexed on 2010/04/21 22:13 UTC
Read the original article Hit count: 273

Filed under:
|
|

Good afternoon, all.

I'm not too hopeful for a "yes" here, but if anyone can figure it out, the folks at SO can.

I have a Java project that has the following package structure:

src
|-net
| |-binarymuse
|   |-gwt
|     |-client
|     | |-ui
|     |   |-project
|     |     |-Project.java
|     |-Project.gwt.xml
|-overview.html

I would like to consolidate the empty subdirectories in the src/ folder so that instead of /src/net/binarymuse/gwt/client/ui/project/ I'd have /src/net.binarymuse.gwt/client.ui.project/. Is this possible?

Thanks.

© Stack Overflow or respective owner

Related posts about java

Related posts about packages