/** */ package hu.bme.mit.inf.dslreasoner.logic.model.logicproblem; import hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.Constant; import hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.Function; import hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.Relation; import hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.Type; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Containment Hierarchy'. * * *

* The following features are supported: *

* * * @see hu.bme.mit.inf.dslreasoner.logic.model.logicproblem.LogicproblemPackage#getContainmentHierarchy() * @model * @generated */ public interface ContainmentHierarchy extends EObject { /** * Returns the value of the 'Types Ordered In Hierarchy' reference list. * The list contents are of type {@link hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.Type}. * *

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

* * @return the value of the 'Types Ordered In Hierarchy' reference list. * @see hu.bme.mit.inf.dslreasoner.logic.model.logicproblem.LogicproblemPackage#getContainmentHierarchy_TypesOrderedInHierarchy() * @model * @generated */ EList getTypesOrderedInHierarchy(); /** * Returns the value of the 'Containment Functions' reference list. * The list contents are of type {@link hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.Function}. * *

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

* * @return the value of the 'Containment Functions' reference list. * @see hu.bme.mit.inf.dslreasoner.logic.model.logicproblem.LogicproblemPackage#getContainmentHierarchy_ContainmentFunctions() * @model * @generated */ EList getContainmentFunctions(); /** * Returns the value of the 'Containment Relations' reference list. * The list contents are of type {@link hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.Relation}. * *

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

* * @return the value of the 'Containment Relations' reference list. * @see hu.bme.mit.inf.dslreasoner.logic.model.logicproblem.LogicproblemPackage#getContainmentHierarchy_ContainmentRelations() * @model * @generated */ EList getContainmentRelations(); /** * Returns the value of the 'Root Constant' reference. * *

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

* * @return the value of the 'Root Constant' reference. * @see #setRootConstant(Constant) * @see hu.bme.mit.inf.dslreasoner.logic.model.logicproblem.LogicproblemPackage#getContainmentHierarchy_RootConstant() * @model * @generated */ Constant getRootConstant(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.logic.model.logicproblem.ContainmentHierarchy#getRootConstant Root Constant}' reference. * * * @param value the new value of the 'Root Constant' reference. * @see #getRootConstant() * @generated */ void setRootConstant(Constant value); } // ContainmentHierarchy