/** */ package hu.bme.mit.inf.dslreasoner.logic.model.logicproblem; import hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.Assertion; import hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.Constant; import hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.DefinedElement; 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 'Logic Problem'. * * *

* The following features are supported: *

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

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

* * @return the value of the 'Types' containment reference list. * @see hu.bme.mit.inf.dslreasoner.logic.model.logicproblem.LogicproblemPackage#getLogicProblem_Types() * @model containment="true" * @generated */ EList getTypes(); /** * Returns the value of the 'Functions' containment reference list. * The list contents are of type {@link hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.Function}. * *

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

* * @return the value of the 'Functions' containment reference list. * @see hu.bme.mit.inf.dslreasoner.logic.model.logicproblem.LogicproblemPackage#getLogicProblem_Functions() * @model containment="true" * @generated */ EList getFunctions(); /** * Returns the value of the 'Assertions' containment reference list. * The list contents are of type {@link hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.Assertion}. * *

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

* * @return the value of the 'Assertions' containment reference list. * @see hu.bme.mit.inf.dslreasoner.logic.model.logicproblem.LogicproblemPackage#getLogicProblem_Assertions() * @model containment="true" * @generated */ EList getAssertions(); /** * Returns the value of the 'Relations' containment reference list. * The list contents are of type {@link hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.Relation}. * *

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

* * @return the value of the 'Relations' containment reference list. * @see hu.bme.mit.inf.dslreasoner.logic.model.logicproblem.LogicproblemPackage#getLogicProblem_Relations() * @model containment="true" * @generated */ EList getRelations(); /** * Returns the value of the 'Constants' containment reference list. * The list contents are of type {@link hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.Constant}. * *

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

* * @return the value of the 'Constants' containment reference list. * @see hu.bme.mit.inf.dslreasoner.logic.model.logicproblem.LogicproblemPackage#getLogicProblem_Constants() * @model containment="true" * @generated */ EList getConstants(); /** * Returns the value of the 'Elements' containment reference list. * The list contents are of type {@link hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.DefinedElement}. * *

* 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' containment reference list. * @see hu.bme.mit.inf.dslreasoner.logic.model.logicproblem.LogicproblemPackage#getLogicProblem_Elements() * @model containment="true" * @generated */ EList getElements(); /** * Returns the value of the 'Containment Hierarchies' containment reference list. * The list contents are of type {@link hu.bme.mit.inf.dslreasoner.logic.model.logicproblem.ContainmentHierarchy}. * *

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

* * @return the value of the 'Containment Hierarchies' containment reference list. * @see hu.bme.mit.inf.dslreasoner.logic.model.logicproblem.LogicproblemPackage#getLogicProblem_ContainmentHierarchies() * @model containment="true" * @generated */ EList getContainmentHierarchies(); /** * Returns the value of the 'Annotations' containment reference list. * The list contents are of type {@link hu.bme.mit.inf.dslreasoner.logic.model.logicproblem.Annotation}. * *

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

* * @return the value of the 'Annotations' containment reference list. * @see hu.bme.mit.inf.dslreasoner.logic.model.logicproblem.LogicproblemPackage#getLogicProblem_Annotations() * @model containment="true" * @generated */ EList getAnnotations(); } // LogicProblem