Is there a more intuitive way to introduce a package into a flattened hierarchy?
Suppose I have the package a.b.c that is flattened (i.e. there are no classes in any package except a.b.c), and I want to introduce a new package a.b.foo. Is there a way to do this that is clearer and more intuitive than selecting the root and asking for a new package a.b.foo?
Please sign in to leave a comment.
Other than unflattening the packages, creating the new packages and flattening again? Typing the full package name seems good enough, and I can't think of a better way to do this.