public BeanModel<T> create(Class<T> beanClass,
boolean filterReadOnlyProperties,
Messages messages)Deprecated! use - #createDisplayModel(Class, org.apache.tapestry5.ioc.Messages) or #createEditModel(Class, org.apache.tapestry5.ioc.Messages)
Creates a new model used for editing the indicated bean class. The model will represent all read/write properties
of the bean. The order of properties is determined from the order of the getter methods in the code, and can be
overridden with the org.apache.tapestry5.beaneditor.ReorderProperties annotation. The labels for the
properties are derived from the property names, but if the component's message catalog has keys of the form
propertyName-label , then those will be used instead.
Models are mutable, so they are not cached, a fresh instance is created each time. |