Re: [JAVA] creating instance of the class

2007-02-09 Thread Niall Pemberton
On 2/9/07, temp temp <[EMAIL PROTECTED]> wrote: I want to create instance of a class using object.getClass().new Instance() but this object constructor needs another object so how can I do this ? Suppose I have a class DefaultMetaInfoHandler default=new DefaultMetaI

[JAVA] creating instance of the class

2007-02-09 Thread temp temp
I want to create instance of a class using object.getClass().new Instance() but this object constructor needs another object so how can I do this ? Suppose I have a class DefaultMetaInfoHandler default=new DefaultMetaInfo(“test”); Ca