/** */ package org.example.xbase.entities.entities; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; import org.eclipse.xtext.common.types.JvmParameterizedTypeReference; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Entity</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.example.xbase.entities.entities.Entity#getName <em>Name</em>}</li> * <li>{@link org.example.xbase.entities.entities.Entity#getSuperType <em>Super Type</em>}</li> * <li>{@link org.example.xbase.entities.entities.Entity#getAttributes <em>Attributes</em>}</li> * <li>{@link org.example.xbase.entities.entities.Entity#getOperations <em>Operations</em>}</li> * </ul> * </p> * * @see org.example.xbase.entities.entities.EntitiesPackage#getEntity() * @model * @generated */ public interface Entity extends EObject { /** * Returns the value of the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Name</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Name</em>' attribute. * @see #setName(String) * @see org.example.xbase.entities.entities.EntitiesPackage#getEntity_Name() * @model * @generated */ String getName(); /** * Sets the value of the '{@link org.example.xbase.entities.entities.Entity#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>Super Type</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Super Type</em>' containment reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Super Type</em>' containment reference. * @see #setSuperType(JvmParameterizedTypeReference) * @see org.example.xbase.entities.entities.EntitiesPackage#getEntity_SuperType() * @model containment="true" * @generated */ JvmParameterizedTypeReference getSuperType(); /** * Sets the value of the '{@link org.example.xbase.entities.entities.Entity#getSuperType <em>Super Type</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Super Type</em>' containment reference. * @see #getSuperType() * @generated */ void setSuperType(JvmParameterizedTypeReference value); /** * Returns the value of the '<em><b>Attributes</b></em>' containment reference list. * The list contents are of type {@link org.example.xbase.entities.entities.Attribute}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Attributes</em>' containment reference list isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Attributes</em>' containment reference list. * @see org.example.xbase.entities.entities.EntitiesPackage#getEntity_Attributes() * @model containment="true" * @generated */ EList<Attribute> getAttributes(); /** * Returns the value of the '<em><b>Operations</b></em>' containment reference list. * The list contents are of type {@link org.example.xbase.entities.entities.Operation}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Operations</em>' containment reference list isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Operations</em>' containment reference list. * @see org.example.xbase.entities.entities.EntitiesPackage#getEntity_Operations() * @model containment="true" * @generated */ EList<Operation> getOperations(); } // Entity