/** */ package hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage; import org.eclipse.emf.common.util.EList; /** * * A representation of the model object 'Type Definition'. * * *

* The following features are supported: *

* * * @see hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.LogiclanguagePackage#getTypeDefinition() * @model * @generated */ public interface TypeDefinition extends Type { /** * Returns the value of the 'Elements' reference list. * The list contents are of type {@link hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.DefinedElement}. * It is bidirectional and its opposite is '{@link hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.DefinedElement#getDefinedInType Defined In Type}'. * *

* If the meaning of the 'Elements' containment reference list isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Elements' reference list. * @see hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.LogiclanguagePackage#getTypeDefinition_Elements() * @see hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.DefinedElement#getDefinedInType * @model opposite="definedInType" * @generated */ EList getElements(); /** * Returns the value of the 'Defines' reference. * *

* If the meaning of the 'Defines' reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Defines' reference. * @see #setDefines(TypeDeclaration) * @see hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.LogiclanguagePackage#getTypeDefinition_Defines() * @model * @generated */ TypeDeclaration getDefines(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.TypeDefinition#getDefines Defines}' reference. * * * @param value the new value of the 'Defines' reference. * @see #getDefines() * @generated */ void setDefines(TypeDeclaration value); } // TypeDefinition