One way to do this is to load the two classes in different class loaders. To be completely safe, you also need to run the classes in a security sandbox that stops reflection and other mechanisms that could get around the class loader barrier.
Actually, I think there might be a flaw in this. If the two "player" classes implement the same interface, they can polymorpically invoke methods defined in the shared interface. The fact that they are loaded in different class loaders and therefore can't use each others' types doesn't stop that.
So, you are essentially relying on blocking reflection (and good programming) to prevent one class/object ferreting out the instance of the other. Blocking reflection also prevents one class from breaking the other's encapsulation, or calling methods that are not defined in a common superclass or a shared interface.