Frank Sauer wrote: > > Maybe I'm completely confused (it has been a long night) > but if you call : > > ((Object)whatever).clone(); > > won't that result in a call to the actual overridden clone() in the > actual class of whatever? No. That won't compile. clone() isn't public on Object. -jh-