Originally Posted by
KevinWorkman
What if both Jars contain the same class name in the same package? What if an expected class is removed from one of the Jars?
Well, I will be careful not to duplicate a classname that's used in the "original" package. In any case I would immediately find this out when I tested the solution. If the original developer by coincidence adds a classname to his application which duplicates one I've already created, my version of the app will stop working, and I'll just have to fix it if this happens. Not ideal, I know, but a fairly remote chance in this particular case, so one I will live with.
Originally Posted by
KevinWorkman
what's so wrong with using your own package?
Well, the package name is hard coded into his part of the application, so if I use a different one (that's what I tried first) my code never gets called. That's what led me to ask this question in the first place.
Anyway, thanks for your interest and help. I've learnt something, and my solution is working so progress has been made!
Rowan