org.eclipse.emf.databinding.IEMFValueProperty Maven / Gradle / Ivy
The newest version!
/**
* Copyright (c) 2008 Matthew Hall and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Matthew Hall - initial API and implementation (bug 195222)
* Tom Schindl - port to EMF in 262160
*/
package org.eclipse.emf.databinding;
import org.eclipse.core.databinding.property.value.IValueProperty;
import org.eclipse.emf.ecore.EStructuralFeature;
/**
* PROVISIONAL: This API is subject to arbitrary change, including renaming or removal.
*
* An {@link IValueProperty} extension interface with convenience methods for
* creating nested {@link EStructuralFeature} properties.
*
* @since 2.5
* @noextend This interface is not intended to be extended by clients.
* @noimplement This interface is not intended to be implemented by clients.
*/
public interface IEMFValueProperty extends IEMFProperty, IValueProperty
{
/**
* Returns a master-detail combination of this property and the specified
* nested value feature.
*
* @param featurePath
* the nested value property to observe.
* @return a master-detail combination of this property and the specified
* nested value feature.
* @see #value(IEMFValueProperty)
*/
public IEMFValueProperty value(FeaturePath featurePath);
/**
* Returns a master-detail combination of this property and the specified
* value feature.
*
* @param feature
* the nested value property to observe.
* @return a master-detail combination of this property and the specified
* value feature.
* @see #value(IEMFValueProperty)
*/
public IEMFValueProperty value(EStructuralFeature feature);
/**
* 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.
*
* Example:
*
*
* // Observes the Node-typed "parent" property of a Node object
* IEMFValueProperty parent = EMFProperties.value(MyPackage.Literals.NODE_PARENT);
* // Observes the string-typed "name" property of a Node object
* IEMFValueProperty name = EMFProperties.value(MyPackage.Literals.NODE_NAME);
* // Observes the name of the parent of a Node object.
* IEMFValueProperty parentName = parent.value(name);
*
*
* @param property
* the detail property to observe
* @return a master-detail combination of this property and the specified
* value property.
*/
public IEMFValueProperty value(IEMFValueProperty property);
/**
* Returns a master-detail combination of this property and the specified
* list feature.
*
* @param feature
* the list feature to observe
* @return a master-detail combination of this property and the specified
* list feature.
* @see #list(IEMFListProperty)
*/
public IEMFListProperty list(EStructuralFeature feature);
/**
* 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.
*
* Example:
*
*
* // Observes the Node-typed "parent" property of a Node object.
* IEMFValueProperty parent = EMFProperties.value(MyPackage.Literals.NODE_PARENT);
* // Observes the List-typed "children" property of a Node object
* // where the elements are Node objects
* IEMFListProperty children = EMFProperties.list(MyPackage.Literals.NODE_CHILDREN);
* // Observes the children of the parent (siblings) of a Node object.
* IEMFListProperty siblings = parent.list(children);
*
*
* @param property
* the detail property to observe
* @return a master-detail combination of this property and the specified
* list property.
*/
public IEMFListProperty list(IEMFListProperty property);
/**
* Returns a master-detail combination of this property and the specified
* map feature.
*
* @param feature
* the map property to observe
* @return a master-detail combination of this property and the specified
* map feature.
* @see #map(IEMFMapProperty)
*/
public IEMFMapProperty map(EStructuralFeature feature);
/**
* 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.
*
* Example:
*
*
* // Observes the Contact-typed "supervisor" property of a
* // Contact class
* IEMFValueProperty supervisor = EMFProperties.value(MyPackage.Literals.CONTACT_SUPERVISOR);
* // Observes the property "phoneNumbers" of a Contact object--a property mapping
* // from PhoneNumberType to PhoneNumber "set-typed "children",
* IEMFMapProperty phoneNumbers = EMFProperties.map(MyPackage.Literals.CONTACT_PHONENUMBERS);
* // Observes the phone numbers of a contact's supervisor:
* IEMFMapProperty supervisorPhoneNumbers = supervisor.map(phoneNumbers);
*
*
* @param property
* the detail property to observe
* @return a master-detail combination of this property and the specified
* map property.
*/
public IEMFMapProperty map(IEMFMapProperty property);
/**
* Returns a master-detail combination of this property and the specified
* set property.
*
* @param feature
* the set feature to observe
* @return a master-detail combination of this property and the specified
* set property.
* @see #set(IEMFSetProperty)
*/
public IEMFSetProperty set(EStructuralFeature feature);
/**
* 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.
*
* Example:
*
*
* // Observes the Node-typed "parent" property of a Node object.
* IEMFValueProperty parent = EMFProperties.value(MyPackage.Literals.NODE__PARENT);
* // Observes the Set-typed "children" property of a Node object
* // where the elements are Node objects
* IEMFSetProperty children = EMFProperties.set(MyPackage.Literals.NODE__CHILDREN);
* // Observes the children of the parent (siblings) of a Node object.
* IEMFSetProperty siblings = parent.set(children);
*
*
* @param property
* the detail property to observe
* @return a master-detail combination of this property and the specified
* set property.
*/
public IEMFSetProperty set(IEMFSetProperty property);
}