/** * <copyright> * </copyright> * */ package org.applause.lang.applauseDsl; import org.eclipse.emf.common.util.EList; /** * <!-- 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.applause.lang.applauseDsl.Entity#getExtends <em>Extends</em>}</li> * <li>{@link org.applause.lang.applauseDsl.Entity#getProperties <em>Properties</em>}</li> * </ul> * </p> * * @see org.applause.lang.applauseDsl.ApplauseDslPackage#getEntity() * @model * @generated */ public interface Entity extends Type { /** * Returns the value of the '<em><b>Extends</b></em>' reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Extends</em>' reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Extends</em>' reference. * @see #setExtends(Entity) * @see org.applause.lang.applauseDsl.ApplauseDslPackage#getEntity_Extends() * @model * @generated */ Entity getExtends(); /** * Sets the value of the '{@link org.applause.lang.applauseDsl.Entity#getExtends <em>Extends</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Extends</em>' reference. * @see #getExtends() * @generated */ void setExtends(Entity value); /** * Returns the value of the '<em><b>Properties</b></em>' containment reference list. * The list contents are of type {@link org.applause.lang.applauseDsl.Property}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Properties</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>Properties</em>' containment reference list. * @see org.applause.lang.applauseDsl.ApplauseDslPackage#getEntity_Properties() * @model containment="true" * @generated */ EList<Property> getProperties(); } // Entity