For several uninteresting reasons: we need to copy many classes from one project to another (preserving the package structure of the specified classes).
In other words, given:
origin/src/com/foo/bar/A origin/src/com/baz/qux/B dest/ <empty>
We want to copy A and B so that in the end it turns out:
dest/src/com/foo/bar/A dest/src/com/baz/qux/B
Currently, we are forced to manually create packages in dest , and then Ctrl+C/Ctrl+V separate .java files between projects. We would like Eclipse to automatically copy files when automatically creating packages (hence preserving the package structure).
source share