Thread: clone method
View Single Post
  #2 (permalink)  
Old 01-29-2008, 04:12 PM
tim's Avatar
tim tim is offline
Senior Member
 
Join Date: Dec 2007
Location: South Africa
Posts: 334
tim is on a distinguished road
Return this
Hello javaplus

Override the clone() method of your class:
Code:
public Object clone(){ return this; }
This is a bit pointless, but it should do the trick.
__________________
If your ship has not come in yet then build a lighthouse.
Reply With Quote