Jeroen Frijters wrote:
No, that does not solve the problem of getting access to the internals of public classes. For example, java.lang.VMThread needs to access package private methods in java.lang.Thread.
You are correct, if your design is such that you need private access both ways, then you are pretty much screwed. I would have thought that java.lang.Thread would have only needed access to java.lang.VMThread, not the other way around. C'est la vie.
-> richard
