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

* The following features are supported: *

* * * @see hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.LogiclanguagePackage#getType() * @model abstract="true" * @generated */ public interface Type extends TypeDescriptor { /** * Returns the value of the 'Name' attribute. * *

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

* * @return the value of the 'Name' attribute. * @see #setName(String) * @see hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.LogiclanguagePackage#getType_Name() * @model required="true" * @generated */ String getName(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.Type#getName Name}' attribute. * * * @param value the new value of the 'Name' attribute. * @see #getName() * @generated */ void setName(String value); /** * Returns the value of the 'Subtypes' reference list. * The list contents are of type {@link hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.Type}. * It is bidirectional and its opposite is '{@link hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.Type#getSupertypes Supertypes}'. * *

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

* * @return the value of the 'Subtypes' reference list. * @see hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.LogiclanguagePackage#getType_Subtypes() * @see hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.Type#getSupertypes * @model opposite="supertypes" * @generated */ EList getSubtypes(); /** * Returns the value of the 'Supertypes' reference list. * The list contents are of type {@link hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.Type}. * It is bidirectional and its opposite is '{@link hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.Type#getSubtypes Subtypes}'. * *

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

* * @return the value of the 'Supertypes' reference list. * @see hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.LogiclanguagePackage#getType_Supertypes() * @see hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.Type#getSubtypes * @model opposite="subtypes" * @generated */ EList getSupertypes(); /** * Returns the value of the 'Is Abstract' attribute. * *

* If the meaning of the 'Is Abstract' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Is Abstract' attribute. * @see #setIsAbstract(boolean) * @see hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.LogiclanguagePackage#getType_IsAbstract() * @model required="true" * @generated */ boolean isIsAbstract(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.Type#isIsAbstract Is Abstract}' attribute. * * * @param value the new value of the 'Is Abstract' attribute. * @see #isIsAbstract() * @generated */ void setIsAbstract(boolean value); } // Type