I was playing with DynaBeans recently but couldn't find any faster way to
create a DynaBean than:
DynaClass dc = new BasicDynaClass(
"SomeNameBean",
BasicDynaBean.class,
new DynaProperty[] { new DynaProperty(property) }
);
DynaBean seeker = new BasicDynaBean( dc );
seeker.set(property, value);
or something with more properties/types etc.
Is there any kind of Factory to make life easier?
Hen
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]