blob: e7be6373305812e248308ba4c1b8eee4f292e19d [file] [log] [blame]
/**
*/
package configuration;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Feature</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link configuration.Feature#getName <em>Name</em>}</li>
* <li>{@link configuration.Feature#getBinding <em>Binding</em>}</li>
* </ul>
*
* @see configuration.ConfigurationPackage#getFeature()
* @model
* @generated
*/
public interface Feature extends EObject {
/**
* Returns the value of the '<em><b>Name</b></em>' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Name</em>' attribute.
* @see #setName(String)
* @see configuration.ConfigurationPackage#getFeature_Name()
* @model
* @generated
*/
String getName();
/**
* Sets the value of the '{@link configuration.Feature#getName <em>Name</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Name</em>' attribute.
* @see #getName()
* @generated
*/
void setName(String value);
/**
* Returns the value of the '<em><b>Binding</b></em>' attribute.
* The literals are from the enumeration {@link configuration.FeatureBinding}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Binding</em>' attribute.
* @see configuration.FeatureBinding
* @see #setBinding(FeatureBinding)
* @see configuration.ConfigurationPackage#getFeature_Binding()
* @model required="true"
* @generated
*/
FeatureBinding getBinding();
/**
* Sets the value of the '{@link configuration.Feature#getBinding <em>Binding</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Binding</em>' attribute.
* @see configuration.FeatureBinding
* @see #getBinding()
* @generated
*/
void setBinding(FeatureBinding value);
} // Feature