blob: 72153a641bd92b1fe0dd8080091616d8bca67e69 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2009 Matthew Hall 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:
* Matthew Hall - initial API and implementation (bug 195222)
******************************************************************************/
package org.eclipse.core.databinding.beans;
import org.eclipse.core.databinding.property.value.IValueProperty;
/**
* An {@link IValueProperty} extension interface with convenience methods for
* creating nested bean properties.
*
* @since 1.2
* @noextend This interface is not intended to be extended by clients.
* @noimplement This interface is not intended to be implemented by clients.
*/
public interface IBeanValueProperty extends IBeanProperty, IValueProperty {
/**
* Returns a master-detail combination of this property and the specified
* value property.
*
* @param propertyName
* the value property to observe. May be nested e.g.
* "parent.name"
* @return a master-detail combination of this property and the specified
* value property.
* @see #value(IBeanValueProperty)
*/
public IBeanValueProperty value(String propertyName);
/**
* Returns a master-detail combination of this property and the specified
* value property.
*
* @param propertyName
* the value property to observe. May be nested e.g.
* "parent.name"
* @param valueType
* the value type of the named property
* @return a master-detail combination of this property and the specified
* value property.
* @see #value(IBeanValueProperty)
*/
public IBeanValueProperty value(String propertyName, Class valueType);
/**
* Returns a master-detail combination of this property and the specified
* value property. The returned property will observe the specified detail
* value property for the value of the master value property.
* <p>
* Example:
*
* <pre>
* // Observes the Node-typed &quot;parent&quot; property of a Node object
* IBeanValueProperty parent = BeanProperties.value(Node.class, &quot;parent&quot;);
* // Observes the string-typed &quot;name&quot; property of a Node object
* IBeanValueProperty name = BeanProperties.value(Node.class, &quot;name&quot;);
* // Observes the name of the parent of a Node object.
* IBeanValueProperty parentName = parent.value(name);
* </pre>
*
* @param property
* the detail property to observe
* @return a master-detail combination of this property and the specified
* value property.
*/
public IBeanValueProperty value(IBeanValueProperty property);
/**
* Returns a master-detail combination of this property and the specified
* list property.
*
* @param propertyName
* the list property to observe
* @return a master-detail combination of this property and the specified
* list property.
* @see #list(IBeanListProperty)
*/
public IBeanListProperty list(String propertyName);
/**
* Returns a master-detail combination of this property and the specified
* list property.
*
* @param propertyName
* the list property to observe
* @param elementType
* the element type of the named property
* @return a master-detail combination of this property and the specified
* list property.
* @see #list(IBeanListProperty)
*/
public IBeanListProperty list(String propertyName, Class elementType);
/**
* Returns a master-detail combination of this property and the specified
* list property. The returned property will observe the specified list
* property for the value of the master property.
* <p>
* Example:
*
* <pre>
* // Observes the Node-typed &quot;parent&quot; property of a Node object.
* IBeanValueProperty parent = BeanProperties.value(Node.class, &quot;parent&quot;);
* // Observes the List-typed &quot;children&quot; property of a Node object
* // where the elements are Node objects
* IBeanListProperty children = BeanProperties.list(Node.class, &quot;children&quot;,
* Node.class);
* // Observes the children of the parent (siblings) of a Node object.
* IBeanListProperty siblings = parent.list(children);
* </pre>
*
* @param property
* the detail property to observe
* @return a master-detail combination of this property and the specified
* list property.
*/
public IBeanListProperty list(IBeanListProperty property);
/**
* Returns a master-detail combination of this property and the specified
* set property.
*
* @param propertyName
* the set property to observe
* @return a master-detail combination of this property and the specified
* set property.
* @see #set(IBeanSetProperty)
*/
public IBeanSetProperty set(String propertyName);
/**
* Returns a master-detail combination of this property and the specified
* set property.
*
* @param propertyName
* the set property to observe
* @param elementType
* the element type of the named property
* @return a master-detail combination of this property and the specified
* set property.
* @see #set(IBeanSetProperty)
*/
public IBeanSetProperty set(String propertyName, Class elementType);
/**
* Returns a master-detail combination of this property and the specified
* set property. The returned property will observe the specified set
* property for the value of the master property.
* <p>
* Example:
*
* <pre>
* // Observes the Node-typed &quot;parent&quot; property of a Node object.
* IBeanValueProperty parent = BeanProperties.value(Node.class, &quot;parent&quot;);
* // Observes the Set-typed &quot;children&quot; property of a Node object
* // where the elements are Node objects
* IBeanSetProperty children = BeanProperties.set(Node.class, &quot;children&quot;,
* Node.class);
* // Observes the children of the parent (siblings) of a Node object.
* IBeanSetProperty siblings = parent.set(children);
* </pre>
*
* @param property
* the detail property to observe
* @return a master-detail combination of this property and the specified
* set property.
*/
public IBeanSetProperty set(IBeanSetProperty property);
/**
* Returns a master-detail combination of this property and the specified
* map property.
*
* @param propertyName
* the map property to observe
* @return a master-detail combination of this property and the specified
* map property.
* @see #map(IBeanMapProperty)
*/
public IBeanMapProperty map(String propertyName);
/**
* Returns a master-detail combination of this property and the specified
* map property.
*
* @param propertyName
* the map property to observe
* @param keyType
* the key type of the named property
* @param valueType
* the value type of the named property
* @return a master-detail combination of this property and the specified
* map property.
* @see #map(IBeanMapProperty)
*/
public IBeanMapProperty map(String propertyName, Class keyType,
Class valueType);
/**
* Returns a master-detail combination of this property and the specified
* map property. The returned property will observe the specified map
* property for the value of the master property.
* <p>
* Example:
*
* <pre>
* // Observes the Contact-typed &quot;supervisor&quot; property of a
* // Contact class
* IBeanValueProperty supervisor = BeanProperties.value(Contact.class,
* &quot;supervisor&quot;);
* // Observes the property &quot;phoneNumbers&quot; of a Contact object--a property mapping
* // from PhoneNumberType to PhoneNumber &quot;set-typed &quot;children&quot;,
* IBeanMapProperty phoneNumbers = BeanProperties.map(Contact.class,
* &quot;phoneNumbers&quot;, PhoneNumberType.class, PhoneNumber.class);
* // Observes the phone numbers of a contact's supervisor:
* IBeanMapProperty supervisorPhoneNumbers = supervisor.map(phoneNumbers);
* </pre>
*
* @param property
* the detail property to observe
* @return a master-detail combination of this property and the specified
* map property.
*/
public IBeanMapProperty map(IBeanMapProperty property);
}