*/
public static IObservableSet observeDetailSet(Realm realm,
IObservableValue master, String propertyName, Class propertyType) {
BeansObservables.warnIfDifferentRealms(realm, master.getRealm());
IObservableSet observableSet = MasterDetailObservables.detailSet(
master, PojoProperties.set(propertyName, propertyType)
.setFactory(realm), propertyType);
return new BeanObservableSetDecorator(observableSet, BeanPropertyHelper
.getValueTypePropertyDescriptor(master, propertyName));
}