I have to clone an object which does not implement Cloneable interface how to do this.
Actually in my project I am using JCChart .now my class extends MultiChart and I have to craete the deep copy of my class. I am able to clone my class object but how to clone Objects of MultiChart. like I also have to clone Legends of objects , Footer of Object, Header of Object.
If your class is
Serializablethan you can serialize the object to ByteStream and Deserialize that stream to a new object.