/** */ package IFML.Core; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Domain Concept</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link IFML.Core.DomainConcept#getDataBinding <em>Data Binding</em>}</li> * </ul> * </p> * * @see IFML.Core.CorePackage#getDomainConcept() * @model * @generated */ public interface DomainConcept extends DomainElement { /** * Returns the value of the '<em><b>Data Binding</b></em>' reference. * It is bidirectional and its opposite is '{@link IFML.Core.DataBinding#getDomainConcept <em>Domain Concept</em>}'. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Data Binding</em>' reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Data Binding</em>' reference. * @see #setDataBinding(DataBinding) * @see IFML.Core.CorePackage#getDomainConcept_DataBinding() * @see IFML.Core.DataBinding#getDomainConcept * @model opposite="domainConcept" ordered="false" * @generated */ DataBinding getDataBinding(); /** * Sets the value of the '{@link IFML.Core.DomainConcept#getDataBinding <em>Data Binding</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Data Binding</em>' reference. * @see #getDataBinding() * @generated */ void setDataBinding(DataBinding value); } // DomainConcept