I am relatively new to the flex world. I am from theSpring/Hibernate
world.In Hibernate, the POJO object or domain object , or simplybeans
that you use to persist you object into the database does nothave to
follow the bean definition/contract, i.e: public defaultconstructor with
getter/setters. There are good reasons behindcreating those kind of
'hibernate beans' (I will call them that wayfor lack of a better name).
In fact, only defining a one-parameterconstructor (i.e. omitting the
default on...