Re: create java class instance from type selected at runtime

2009-12-06 Thread ataggart
On Dec 5, 11:48 am, Christopher Wicklein wrote: > Greetings! > > I'd like to create an instance of a Java class like this: > > let [foo (Bar.)] > > but, I'd like the type specified by Bar to not be static, e.g. something like > this: > > let [foo (:type params).] > > but, I can't seem to get this

Re: create java class instance from type selected at runtime

2009-12-05 Thread Joost
On 5 dec, 20:48, Christopher Wicklein wrote: > Greetings! > > I'd like to create an instance of a Java class like this: > > let [foo (Bar.)] > > but, I'd like the type specified by Bar to not be static, e.g. something like > this: > > let [foo (:type params).] > > but, I can't seem to get this

Re: create java class instance from type selected at runtime

2009-12-05 Thread Stephen C. Gilardi
On Dec 5, 2009, at 2:48 PM, Christopher Wicklein wrote: > Greetings! Hello! > I'd like to create an instance of a Java class like this: > > let [foo (Bar.)] > > but, I'd like the type specified by Bar to not be static, e.g. something like > this: > > let [foo (:type params).] > > but, I ca

create java class instance from type selected at runtime

2009-12-05 Thread Christopher Wicklein
Greetings! I'd like to create an instance of a Java class like this: let [foo (Bar.)] but, I'd like the type specified by Bar to not be static, e.g. something like this: let [foo (:type params).] but, I can't seem to get this to work with any variation of syntax I've tried. Is this possible