blob: fc79acc878abb082dc2f1d913cbaa5e850a2bbe8 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2009 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
* Brad Reynolds - bugs 164268, 171616, 147515
* Matthew Hall - bug 221704, 234686, 246625, 226289, 246782, 194734,
* 195222, 247997
* Thomas Kratz - bug 213787
*******************************************************************************/
package org.eclipse.core.databinding.beans;
import java.beans.PropertyDescriptor;
import java.util.ArrayList;
import java.util.List;
import org.eclipse.core.databinding.observable.Realm;
import org.eclipse.core.databinding.observable.list.IObservableList;
import org.eclipse.core.databinding.observable.map.IObservableMap;
import org.eclipse.core.databinding.observable.masterdetail.IObservableFactory;
import org.eclipse.core.databinding.observable.masterdetail.MasterDetailObservables;
import org.eclipse.core.databinding.observable.set.IObservableSet;
import org.eclipse.core.databinding.observable.value.IObservableValue;
import org.eclipse.core.databinding.util.Policy;
import org.eclipse.core.internal.databinding.beans.BeanObservableListDecorator;
import org.eclipse.core.internal.databinding.beans.BeanObservableMapDecorator;
import org.eclipse.core.internal.databinding.beans.BeanObservableSetDecorator;
import org.eclipse.core.internal.databinding.beans.BeanObservableValueDecorator;
import org.eclipse.core.internal.databinding.beans.BeanPropertyHelper;
import org.eclipse.core.internal.databinding.beans.Util;
import org.eclipse.core.runtime.Assert;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Status;
/**
* A factory for creating observable objects of Java objects that conform to the
* <a href="http://java.sun.com/products/javabeans/docs/spec.html">JavaBean
* specification</a> for bound properties.
*
* @since 1.1
* @deprecated use methods in BeanProperties
*/
final public class BeansObservables {
/**
*
*/
public static final boolean DEBUG = true;
/**
* Returns an observable value in the default realm tracking the current
* value of the named property of the given bean.
* <P>
* This method returns a wild card result. You should almost always be using
* the form of this method that has the additional valueType parameter. By
* passing the class of the value you will get back an appropriately
* parameterized observable.
*
* @param bean
* the object
* @param propertyName
* the name of the property. May be nested e.g. "parent.name"
* @return an observable value tracking the current value of the named
* property of the given bean
*/
public static <S> IObservableValue<?> observeValue(S bean,
String propertyName) {
return observeValue(Realm.getDefault(), bean, propertyName);
}
/**
* Returns an observable value in the default realm tracking the current
* value of the named property of the given bean.
*
* @param bean
* the object
* @param propertyName
* the name of the property. May be nested e.g. "parent.name"
* @param valueType
* the value type which must not be null
* @return an observable value tracking the current value of the named
* property of the given bean
* @since 1.5
*/
public static <S, T> IObservableValue<T> observeValue(S bean,
String propertyName, Class<T> valueType) {
return observeValue(Realm.getDefault(), bean, propertyName, valueType);
}
/**
* Returns an observable value in the given realm tracking the current value
* of the named property of the given bean.
* <P>
* This method returns a wild card result. You should almost always be using
* the form of this method that has the additional valueType parameter. By
* passing the class of the value you will get back an appropriately
* parameterized observable.
*
* @param realm
* the realm
* @param bean
* the object
* @param propertyName
* the name of the property. May be nested e.g. "parent.name"
* @return an observable value tracking the current value of the named
* property of the given bean
*/
public static <S> IObservableValue<?> observeValue(Realm realm, S bean,
String propertyName) {
return observeValue(realm, Util.getClass(bean), bean, propertyName);
}
private static <S, S2 extends S> IObservableValue<?> observeValue(
Realm realm, Class<S2> beanClass, S bean, String propertyName) {
return BeanProperties.<S2> value(beanClass, propertyName).observe(
realm, beanClass.cast(bean));
}
/**
* Returns an observable value in the given realm tracking the current value
* of the named property of the given bean.
*
* @param realm
* the realm
* @param bean
* the object
* @param propertyName
* the name of the property. May be nested e.g. "parent.name"
* @param valueType
* the value type which must not be null
* @return an observable value tracking the current value of the named
* property of the given bean
* @since 1.5
*/
public static <S, T> IObservableValue<T> observeValue(Realm realm, S bean,
String propertyName, Class<T> valueType) {
return BeanProperties.<S, T> value(Util.getClass(bean), propertyName,
valueType).observe(realm, bean);
}
/**
* Returns an observable map in the given observable set's realm tracking
* the current values of the named property for the beans in the given set.
* Elements in the set which do not have the named property will have null
* values, and attempts to {@link IObservableMap#put(Object, Object) put}
* values to these elements will be ignored.
*
* @param domain
* the set of bean objects
* @param propertyName
* the name of the property. May be nested e.g. "parent.name"
* @return an observable map tracking the current values of the named
* property for the beans in the given domain set
* @since 1.2
*/
public static <S> IObservableMap<S, Object> observeMap(
IObservableSet<S> domain, String propertyName) {
return BeanProperties.value(propertyName).observeDetail(domain);
}
/**
* Returns an observable map in the given observable set's realm tracking
* the current values of the named property for the beans in the given set.
*
* @param domain
* the set of bean objects
* @param beanClass
* the common base type of bean objects that may be in the set
* @param propertyName
* the name of the property. May be nested e.g. "parent.name"
* @return an observable map tracking the current values of the named
* property for the beans in the given domain set
*/
public static <S> IObservableMap<S, ?> observeMap(IObservableSet<S> domain,
Class<S> beanClass, String propertyName) {
return BeanProperties.<S> value(beanClass, propertyName).observeDetail(
domain);
}
/**
* Returns an observable map in the given realm tracking the map-typed named
* property of the given bean object.
*
* @param realm
* the realm
* @param bean
* the bean object
* @param propertyName
* the name of the property. May be nested e.g. "parent.name"
* @return an observable map tracking the map-typed named property of the
* given bean object
* @since 1.1
*/
public static <S> IObservableMap<?, ?> observeMap(Realm realm, S bean,
String propertyName) {
return observeMap(realm, bean, propertyName, null, null);
}
/**
* Returns an observable map in the given realm tracking the map-typed named
* property of the given bean object.
*
* @param realm
* the realm
* @param bean
* the bean object
* @param propertyName
* the name of the property. May be nested e.g. "parent.name"
* @param keyType
* the element type of the observable map's key set, or
* <code>null</code> if untyped
* @param valueType
* the element type of the observable map's values collection, or
* <code>null</code> if untyped
* @return an observable map tracking the map-typed named property of the
* given bean object
* @since 1.2
*/
public static <S, K, V> IObservableMap<K, V> observeMap(Realm realm,
S bean, String propertyName, Class<K> keyType, Class<V> valueType) {
Class<? extends S> beanClass = Util.getClass(bean);
return BeanProperties.<Object, K, V> map(beanClass, propertyName,
keyType, valueType).observe(realm, bean);
}
/**
* Returns an observable map in the default realm tracking the map-typed
* named property of the given bean object.
*
* @param bean
* the bean object
* @param propertyName
* the name of the property. May be nested e.g. "parent.name"
* @return an observable map tracking the map-typed named property of the
* given bean object
* @since 1.2
*/
public static <S> IObservableMap<?, ?> observeMap(S bean,
String propertyName) {
return observeMap(Realm.getDefault(), bean, propertyName, null, null);
}
/**
* Returns an observable map in the default realm tracking the map-typed
* named property of the given bean object.
*
* @param bean
* the bean object
* @param propertyName
* the name of the property
* @param keyType
* the element type of the observable map's key set, or
* <code>null</code> if untyped
* @param valueType
* the element type of the observable map's values collection, or
* <code>null</code> if untyped
* @return an observable map tracking the map-typed named property of the
* given bean object
* @since 1.2
*/
public static <S, K, V> IObservableMap<K, V> observeMap(S bean,
String propertyName, Class<K> keyType, Class<V> valueType) {
return observeMap(Realm.getDefault(), bean, propertyName, keyType,
valueType);
}
/**
* Returns an array of observable maps in the given observable set's realm
* tracking the current values of the named properties for the beans in the
* given set. Elements in the set which do not have the named property will
* have null values, and attempts to
* {@link IObservableMap#put(Object, Object) put} values to these elements
* will be ignored.
*
* @param domain
* the set of objects
* @param propertyNames
* the array of property names. May be nested e.g. "parent.name"
* @return an array of observable maps tracking the current values of the
* named properties for the beans in the given domain set
* @since 1.2
* @deprecated use instead observeMaps( IObservableSet<S> domain,
* List<String> propertyNames) because that method has better
* type safety
*/
public static <S> IObservableMap<?, ?>[] observeMaps(
IObservableSet<S> domain, String[] propertyNames) {
IObservableMap<?, ?>[] result = new IObservableMap[propertyNames.length];
for (int i = 0; i < propertyNames.length; i++) {
result[i] = observeMap(domain, propertyNames[i]);
}
return result;
}
/**
* Returns an array of observable maps in the given observable set's realm
* tracking the current values of the named properties for the beans in the
* given set. Elements in the set which do not have the named property will
* have null values, and attempts to
* {@link IObservableMap#put(Object, Object) put} values to these elements
* will be ignored.
*
* @param domain
* the set of objects
* @param propertyNames
* the array of property names. May be nested e.g. "parent.name"
* @return an array of observable maps tracking the current values of the
* named properties for the beans in the given domain set
* @since 1.5
*/
public static <S> List<IObservableMap<S, ?>> observeMaps2(
IObservableSet<S> domain, String[] propertyNames) {
List<IObservableMap<S, ?>> result = new ArrayList<IObservableMap<S, ?>>(
propertyNames.length);
for (int i = 0; i < propertyNames.length; i++) {
result.add(observeMap(domain, propertyNames[i]));
}
return result;
}
/**
* Returns an array of observable maps in the given observable set's realm
* tracking the current values of the named properties for the beans in the
* given set.
*
* @param domain
* the set of objects
* @param beanClass
* the common base type of objects that may be in the set
* @param propertyNames
* the array of property names. May be nested e.g. "parent.name"
* @return an array of observable maps tracking the current values of the
* named properties for the beans in the given domain set
* @deprecated use instead observeMaps( IObservableSet<S> domain, Class<S>
* beanClass, List<String> propertyNames) because that method
* has better type safety
*/
// OK to ignore warning in deprecated method
@SuppressWarnings({ "unchecked", "rawtypes" })
public static IObservableMap[] observeMaps(IObservableSet domain,
Class beanClass, String[] propertyNames) {
IObservableMap<?, ?>[] result = new IObservableMap[propertyNames.length];
for (int i = 0; i < propertyNames.length; i++) {
result[i] = observeMap(domain, beanClass, propertyNames[i]);
}
return result;
}
/**
* Returns an array of observable maps in the given observable set's realm
* tracking the current values of the named properties for the beans in the
* given set.
*
* @param domain
* the set of objects
* @param beanClass
* the common base type of objects that may be in the set
* @param propertyNames
* the array of property names. May be nested e.g. "parent.name"
* @return an array of observable maps tracking the current values of the
* named properties for the beans in the given domain set
* @since 1.5
*/
public static <S> List<IObservableMap<S, ?>> observeMaps2(
IObservableSet<S> domain, Class<S> beanClass, String[] propertyNames) {
List<IObservableMap<S, ?>> result = new ArrayList<IObservableMap<S, ?>>(
propertyNames.length);
for (int i = 0; i < propertyNames.length; i++) {
result.add(observeMap(domain, beanClass, propertyNames[i]));
}
return result;
}
/**
* Returns an observable list in the given realm tracking the
* collection-typed named property of the given bean object. The returned
* list is mutable.
*
* @param realm
* the realm
* @param bean
* the object
* @param propertyName
* the name of the collection-typed property
* @return an observable list tracking the collection-typed named property
* of the given bean object
* @see #observeList(Realm, Object, String, Class)
*/
public static <S, E> IObservableList<E> observeList(Realm realm, S bean,
String propertyName) {
return observeList(realm, bean, propertyName, null);
}
/**
* Returns an observable list in the default realm tracking the
* collection-typed named property of the given bean object. The returned
* list is mutable.
*
* @param bean
* the object
* @param propertyName
* the name of the collection-typed property
* @return an observable list tracking the collection-typed named property
* of the given bean object
* @see #observeList(Realm, Object, String, Class)
* @since 1.2
*/
public static <S, E> IObservableList<E> observeList(S bean,
String propertyName) {
return observeList(Realm.getDefault(), bean, propertyName);
}
/**
* Returns an observable list in the given realm tracking the
* collection-typed named property of the given bean object. The returned
* list is mutable. When an item is added or removed the setter is invoked
* for the list on the parent bean to provide notification to other
* listeners via <code>PropertyChangeEvents</code>. This is done to provide
* the same behavior as is expected from arrays as specified in the bean
* spec in section 7.2.
*
* @param realm
* the realm
* @param bean
* the bean object
* @param propertyName
* the name of the property
* @param elementType
* type of the elements in the list. If <code>null</code> and the
* property is an array the type will be inferred. If
* <code>null</code> and the property type cannot be inferred
* element type will be <code>null</code>.
* @return an observable list tracking the collection-typed named property
* of the given bean object
*/
public static <E> IObservableList<E> observeList(Realm realm, Object bean,
String propertyName, Class<E> elementType) {
return BeanProperties.list(bean.getClass(), propertyName, elementType)
.observe(realm, bean);
}
/**
* Returns an observable list in the default realm tracking the
* collection-typed named property of the given bean object. The returned
* list is mutable. When an item is added or removed the setter is invoked
* for the list on the parent bean to provide notification to other
* listeners via <code>PropertyChangeEvents</code>. This is done to provide
* the same behavior as is expected from arrays as specified in the bean
* spec in section 7.2.
*
* @param bean
* the bean object
* @param propertyName
* the name of the property
* @param elementType
* type of the elements in the list. If <code>null</code> and the
* property is an array the type will be inferred. If
* <code>null</code> and the property type cannot be inferred
* element type will be <code>null</code>.
* @return an observable list tracking the collection-typed named property
* of the given bean object
* @since 1.2
*/
public static <E> IObservableList<E> observeList(Object bean,
String propertyName, Class<E> elementType) {
return observeList(Realm.getDefault(), bean, propertyName, elementType);
}
/**
* Returns an observable set in the given realm tracking the
* collection-typed named property of the given bean object
*
* @param realm
* the realm
* @param bean
* the bean object
* @param propertyName
* the name of the property
* @return an observable set tracking the collection-typed named property of
* the given bean object
*/
public static <S, E> IObservableSet<E> observeSet(Realm realm, S bean,
String propertyName) {
return observeSet(realm, bean, propertyName, null);
}
/**
* Returns an observable set in the default realm tracking the
* collection-typed named property of the given bean object
*
* @param bean
* the bean object
* @param propertyName
* the name of the property
* @return an observable set tracking the collection-typed named property of
* the given bean object
* @since 1.2
*/
public static <S, E> IObservableSet<E> observeSet(S bean,
String propertyName) {
return observeSet(Realm.getDefault(), bean, propertyName);
}
/**
* Returns a factory for creating observable values in the given realm,
* tracking the given property of a particular bean object
*
* @param realm
* the realm to use
* @param propertyName
* the name of the property. May be nested e.g. "parent.name"
* @return an observable value factory
*/
public static IObservableFactory<Object, IObservableValue<Object>> valueFactory(
final Realm realm, final String propertyName) {
return BeanProperties.value(propertyName).valueFactory(realm);
}
/**
* Returns a factory for creating observable values in the current default
* realm, tracking the given property of a particular bean object
*
* @param propertyName
* the name of the property. May be nested e.g. "parent.name"
* @return an observable value factory
* @since 1.2
*/
public static IObservableFactory<Object, IObservableValue<Object>> valueFactory(
String propertyName) {
return valueFactory(Realm.getDefault(), propertyName);
}
/**
* Returns a factory for creating observable lists in the given realm,
* tracking the given property of a particular bean object
*
* @param realm
* the realm to use
* @param propertyName
* the name of the property
* @param elementType
* @return an observable list factory
*/
public static <S, E> IObservableFactory<S, IObservableList<E>> listFactory(
final Realm realm, final String propertyName,
final Class<E> elementType) {
return BeanProperties.<S, E> list(propertyName, elementType)
.listFactory(realm);
}
/**
* Returns a factory for creating observable lists in the current default
* realm, tracking the given property of a particular bean object
*
* @param propertyName
* the name of the property
* @param elementType
* @return an observable list factory
* @since 1.2
*/
public static <S, E> IObservableFactory<S, IObservableList<E>> listFactory(
String propertyName, Class<E> elementType) {
return listFactory(Realm.getDefault(), propertyName, elementType);
}
/**
* Returns a factory for creating observable sets in the given realm,
* tracking the given property of a particular bean object
*
* @param realm
* the realm to use
* @param propertyName
* the name of the property
* @return an observable set factory
*/
public static <S, E> IObservableFactory<S, IObservableSet<E>> setFactory(
final Realm realm, final String propertyName) {
return BeanProperties.<S, E> set(propertyName).setFactory(realm);
}
/**
* Returns a factory for creating observable sets in the current default
* realm, tracking the given property of a particular bean object
*
* @param propertyName
* the name of the property
* @return an observable set factory
* @since 1.2
*/
public static <S, E> IObservableFactory<S, IObservableSet<E>> setFactory(
String propertyName) {
return setFactory(Realm.getDefault(), propertyName);
}
/**
* Helper method for
* <code>MasterDetailObservables.detailValue(master, valueFactory(realm,
propertyName), propertyType)</code>
*
* @param realm
* @param master
* @param propertyName
* the name of the property. May be nested e.g. "parent.name"
* @param propertyType
* can be <code>null</code>
* @return an observable value that tracks the current value of the named
* property for the current value of the master observable value
*
* @see MasterDetailObservables
* @deprecated Use
* {@link #observeDetailValue(IObservableValue, String, Class)}
* instead
*/
public static <M, T> IObservableValue<T> observeDetailValue(Realm realm,
IObservableValue<M> master, String propertyName,
Class<T> propertyType) {
warnIfDifferentRealms(realm, master.getRealm());
IObservableValue<T> value = MasterDetailObservables.detailValue(
master,
BeanProperties.value(propertyName, propertyType).valueFactory(
realm), propertyType);
return new BeanObservableValueDecorator<T>(value,
BeanPropertyHelper.getValueTypePropertyDescriptor(master,
propertyName));
}
/* package */static void warnIfDifferentRealms(Realm detailRealm,
Realm masterRealm) {
if (!Util.equals(detailRealm, masterRealm)) {
Throwable throwable = new Throwable();
throwable.fillInStackTrace();
String message = "Detail realm (" + detailRealm //$NON-NLS-1$
+ ") not equal to master realm (" //$NON-NLS-1$
+ masterRealm + ")"; //$NON-NLS-1$
Policy.getLog().log(
new Status(IStatus.WARNING, Policy.JFACE_DATABINDING,
message, throwable));
}
}
/**
* Helper method for
* <code>MasterDetailObservables.detailValue(master, valueFactory(master.getRealm(), propertyName), propertyType)</code>
*
* @param master
* @param propertyName
* the name of the property. May be nested e.g. "parent.name"
* @param propertyType
* can be <code>null</code>
* @return an observable value that tracks the current value of the named
* property for the current value of the master observable value
*
* @see MasterDetailObservables
* @since 1.2
*/
public static <M, T> IObservableValue<T> observeDetailValue(
IObservableValue<M> master, String propertyName,
Class<T> propertyType) {
Class<M> beanClass = master.getValueClass();
return observeDetailValue(master, beanClass, propertyName, propertyType);
}
/**
* Helper method for
* <code>MasterDetailObservables.detailValue(master, valueFactory(realm,
* propertyName), propertyType)</code>. This method returns an
* {@link IBeanObservable} with a {@link PropertyDescriptor} based on the
* given master type and property name.
*
* @param realm
* the realm
* @param master
* the master observable value, for example tracking the
* selection in a list
* @param masterType
* the type of the master observable value
* @param propertyName
* the property name. May be nested e.g. "parent.name"
* @param propertyType
* can be <code>null</code>
* @return an observable value that tracks the current value of the named
* property for the current value of the master observable value
*
* @see MasterDetailObservables
* @since 1.1
* @deprecated Use
* {@link #observeDetailValue(IObservableValue, Class, String, Class)}
* instead.
*/
public static <M, T> IObservableValue<T> observeDetailValue(Realm realm,
IObservableValue<M> master, Class<M> masterType,
String propertyName, Class<T> propertyType) {
warnIfDifferentRealms(realm, master.getRealm());
Assert.isNotNull(masterType, "masterType cannot be null"); //$NON-NLS-1$
IObservableValue<T> value = MasterDetailObservables.detailValue(master,
BeanProperties.value(masterType, propertyName, propertyType)
.valueFactory(realm), propertyType);
return new BeanObservableValueDecorator<T>(value,
BeanPropertyHelper.getPropertyDescriptor(masterType,
propertyName));
}
/**
* Helper method for
* <code>MasterDetailObservables.detailValue(master, valueFactory(master.getRealm(), propertyName), propertyType)</code>
* . This method returns an {@link IBeanObservable} with a
* {@link PropertyDescriptor} based on the given master type and property
* name.
*
* @param master
* the master observable value, for example tracking the
* selection in a list
* @param masterType
* the type of the master observable value
* @param propertyName
* the property name. May be nested e.g. "parent.name"
* @param propertyType
* can be <code>null</code>
* @return an observable value that tracks the current value of the named
* property for the current value of the master observable value
*
* @see MasterDetailObservables
* @since 1.2
*/
public static <M, T> IObservableValue<T> observeDetailValue(
IObservableValue<M> master, Class<M> masterType,
String propertyName, Class<T> propertyType) {
return BeanProperties.value(masterType, propertyName, propertyType)
.observeDetail(master);
}
/**
* Helper method for
* <code>MasterDetailObservables.detailList(master, listFactory(realm,
propertyName, propertyType), propertyType)</code>
*
* @param realm
* @param master
* @param propertyName
* @param propertyType
* can be <code>null</code>
* @return an observable list that tracks the named property for the current
* value of the master observable value
*
* @see MasterDetailObservables
* @deprecated Use
* {@link #observeDetailList(IObservableValue, String, Class)}
* instead
*/
public static <M, E> IObservableList<E> observeDetailList(Realm realm,
IObservableValue<M> master, String propertyName,
Class<E> propertyType) {
warnIfDifferentRealms(realm, master.getRealm());
IObservableList<E> observableList = MasterDetailObservables.detailList(
master, BeanProperties.list(propertyName, propertyType)
.listFactory(realm), propertyType);
return new BeanObservableListDecorator<E>(observableList,
BeanPropertyHelper.getValueTypePropertyDescriptor(master,
propertyName));
}
/**
* Helper method for
* <code>MasterDetailObservables.detailList(master, listFactory(master.getRealm(), propertyName, propertyType), propertyType)</code>
*
* @param master
* @param propertyName
* @param propertyType
* can be <code>null</code>
* @return an observable list that tracks the named property for the current
* value of the master observable value
*
* @see MasterDetailObservables
* @since 1.2
*/
public static <M, E> IObservableList<E> observeDetailList(
IObservableValue<M> master, String propertyName,
Class<E> propertyType) {
Class<M> beanClass = master.getValueClass();
return BeanProperties.list(beanClass, propertyName, propertyType)
.observeDetail(master);
}
/**
* Helper method for
* <code>MasterDetailObservables.detailSet(master, setFactory(realm,
propertyName), propertyType)</code>
*
* @param realm
* @param master
* @param propertyName
* @param propertyType
* can be <code>null</code>
* @return an observable set that tracks the named property for the current
* value of the master observable value
*
* @see MasterDetailObservables
* @deprecated Use
* {@link #observeDetailSet(IObservableValue, String, Class)}
* instead.
*/
public static <M, E> IObservableSet<E> observeDetailSet(Realm realm,
IObservableValue<M> master, String propertyName,
Class<E> propertyType) {
warnIfDifferentRealms(realm, master.getRealm());
IObservableSet<E> observableSet = MasterDetailObservables.detailSet(
master, BeanProperties.set(propertyName, propertyType)
.setFactory(realm), propertyType);
return new BeanObservableSetDecorator<E>(observableSet,
BeanPropertyHelper.getValueTypePropertyDescriptor(master,
propertyName));
}
/**
* Helper method for
* <code>MasterDetailObservables.detailSet(master, setFactory(master.getRealm(), propertyName), propertyType)</code>
*
* @param master
* @param propertyName
* @param propertyType
* can be <code>null</code>
* @return an observable set that tracks the named property for the current
* value of the master observable value
*
* @see MasterDetailObservables
* @since 1.2
*/
public static <M, E> IObservableSet<E> observeDetailSet(
IObservableValue<M> master, String propertyName,
Class<E> propertyType) {
Class<M> beanClass = master.getValueClass();
return BeanProperties.set(beanClass, propertyName, propertyType)
.observeDetail(master);
}
/**
* Helper method for
* <code>MasterDetailObservables.detailMap(master, mapFactory(realm, propertyName))</code>
*
* @param realm
* the realm
* @param master
* @param propertyName
* @return an observable map that tracks the map-type named property for the
* current value of the master observable value.
* @since 1.1
* @deprecated Use {@link #observeDetailMap(IObservableValue, String)}
* instead
*/
public static <M, K, V> IObservableMap<K, V> observeDetailMap(Realm realm,
IObservableValue<M> master, String propertyName) {
warnIfDifferentRealms(realm, master.getRealm());
IObservableMap<K, V> observableMap = MasterDetailObservables.detailMap(
master,
BeanProperties.<M, K, V> map(propertyName).mapFactory(realm));
return new BeanObservableMapDecorator<K, V>(observableMap,
BeanPropertyHelper.getValueTypePropertyDescriptor(master,
propertyName));
}
/**
* Helper method for
* <code>MasterDetailObservables.detailMap(master, mapFactory(master.getRealm(), propertyName))</code>
*
* @param master
* @param propertyName
* @return an observable map that tracks the map-type named property for the
* current value of the master observable value.
* @since 1.2
*/
public static <M, K, V> IObservableMap<K, V> observeDetailMap(
IObservableValue<M> master, String propertyName) {
Class<M> beanClass = master.getValueClass();
return BeanProperties.<M, K, V> map(beanClass, propertyName)
.observeDetail(master);
}
/**
* Returns an observable set in the given realm tracking the
* collection-typed named property of the given bean object. The returned
* set is mutable. When an item is added or removed the setter is invoked
* for the set on the parent bean to provide notification to other listeners
* via <code>PropertyChangeEvents</code>. This is done to provide the same
* behavior as is expected from arrays as specified in the bean spec in
* section 7.2.
*
* @param realm
* the realm
* @param bean
* the bean object
* @param propertyName
* the name of the property
* @param elementType
* type of the elements in the set. If <code>null</code> and the
* property is an array the type will be inferred. If
* <code>null</code> and the property type cannot be inferred
* element type will be <code>null</code>.
* @return an observable set tracking the collection-typed named property of
* the given bean object
*/
public static <S, E> IObservableSet<E> observeSet(Realm realm, S bean,
String propertyName, Class<E> elementType) {
Class<? extends S> beanClass = Util.getClass(bean);
return BeanProperties.set(beanClass, propertyName, elementType)
.observe(realm, bean);
}
/**
* Returns an observable set in the current default realm tracking the
* collection-typed named property of the given bean object. The returned
* set is mutable. When an item is added or removed the setter is invoked
* for the set on the parent bean to provide notification to other listeners
* via <code>PropertyChangeEvents</code>. This is done to provide the same
* behavior as is expected from arrays as specified in the bean spec in
* section 7.2.
*
* @param bean
* the bean object
* @param propertyName
* the name of the property
* @param elementType
* type of the elements in the set. If <code>null</code> and the
* property is an array the type will be inferred. If
* <code>null</code> and the property type cannot be inferred
* element type will be <code>null</code>.
* @return an observable set tracking the collection-typed named property of
* the given bean object
* @since 1.2
*/
public static <S, E> IObservableSet<E> observeSet(S bean,
String propertyName, Class<E> elementType) {
return observeSet(Realm.getDefault(), bean, propertyName, elementType);
}
/**
* Returns a factory for creating observable sets in the given realm,
* tracking the given property of a particular bean object
*
* @param realm
* the realm to use
* @param propertyName
* the name of the property
* @param elementType
* type of the elements in the set. If <code>null</code> and the
* property is an array the type will be inferred. If
* <code>null</code> and the property type cannot be inferred
* element type will be <code>null</code>.
* @return a factory for creating observable sets in the given realm,
* tracking the given property of a particular bean object
*/
public static <E> IObservableFactory<Object, IObservableSet<E>> setFactory(
final Realm realm, final String propertyName,
final Class<E> elementType) {
return BeanProperties.set(propertyName, elementType).setFactory(realm);
}
/**
* Returns a factory for creating observable sets in the current default
* realm, tracking the given property of a particular bean object
*
* @param propertyName
* the name of the property
* @param elementType
* type of the elements in the set. If <code>null</code> and the
* property is an array the type will be inferred. If
* <code>null</code> and the property type cannot be inferred
* element type will be <code>null</code>.
* @return a factory for creating observable sets in the given realm,
* tracking the given property of a particular bean object
* @since 1.2
*/
public static <E> IObservableFactory<Object, IObservableSet<E>> setFactory(
String propertyName, Class<E> elementType) {
return setFactory(Realm.getDefault(), propertyName, elementType);
}
/**
* Returns a factory for creating an observable map. The factory, when
* provided with an {@link IObservableSet}, will create an
* {@link IObservableMap} in the same realm as the underlying set that
* tracks the current values of the named property for the beans in the
* given set.
*
* @param beanClass
* the common base type of bean objects that may be in the set
* @param propertyName
* the name of the property. May be nested e.g. "parent.name"
* @return a factory for creating {@link IObservableMap} objects
*
* @since 1.1
*/
public static <S> IObservableFactory<IObservableSet<S>, IObservableMap<S, ?>> setToMapFactory(
final Class<S> beanClass, final String propertyName) {
return new IObservableFactory<IObservableSet<S>, IObservableMap<S, ?>>() {
public IObservableMap<S, ?> createObservable(
IObservableSet<S> target) {
return observeMap(target, beanClass, propertyName);
}
};
}
/**
* Returns a factory for creating an observable map. The factory, when
* provided with a bean object, will create an {@link IObservableMap} in the
* given realm that tracks the map-typed named property for the specified
* bean.
*
* @param realm
* the realm assigned to observables created by the returned
* factory.
* @param propertyName
* the name of the property
* @return a factory for creating {@link IObservableMap} objects.
* @since 1.1
*/
public static <T, K, V> IObservableFactory<T, IObservableMap<K, V>> mapPropertyFactory(
final Realm realm, final String propertyName) {
return BeanProperties.<T, K, V> map(propertyName).mapFactory(realm);
}
/**
* Returns a factory for creating an observable map. The factory, when
* provided with a bean object, will create an {@link IObservableMap} in the
* current default realm that tracks the map-typed named property for the
* specified bean.
*
* @param propertyName
* the name of the property
* @return a factory for creating {@link IObservableMap} objects.
* @since 1.2
*/
public static <T, K, V> IObservableFactory<T, IObservableMap<K, V>> mapPropertyFactory(
String propertyName) {
return mapPropertyFactory(Realm.getDefault(), propertyName);
}
}