> I have a problem: how to use the clone() method to create a deep copy of a
> JFrame object.
[quoted text clipped - 4 lines]
>
> Thank you in advance Luca Parodi
Hello,
I would suggest to create a new class that extends JFrame and implement
Cloneable, override clone() as you want (maybe using Object.clone() or by
creating a new JFrame and doing things by your self). Then use your new
class instead of JFrame.
Olivier