* instead
*/
public static IObservableList observeDetailList(Realm realm,
IObservableValue master, String propertyName, Class propertyType) {
BeansObservables.warnIfDifferentRealms(realm, master.getRealm());
IObservableList observableList = MasterDetailObservables.detailList(
master, PojoProperties.list(propertyName, propertyType)
.listFactory(realm), propertyType);
return new BeanObservableListDecorator(observableList,
BeanPropertyHelper.getValueTypePropertyDescriptor(master,
propertyName));