/** */ package hu.bme.mit.inf.dslreasoner.viatrasolver.partialinterpretationlanguage.partialinterpretation; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Scope'. * * *

* The following features are supported: *

* * * @see hu.bme.mit.inf.dslreasoner.viatrasolver.partialinterpretationlanguage.partialinterpretation.PartialinterpretationPackage#getScope() * @model * @generated */ public interface Scope extends EObject { /** * Returns the value of the 'Min New Elements' attribute. * The default value is "0". * *

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

* * @return the value of the 'Min New Elements' attribute. * @see #setMinNewElements(int) * @see hu.bme.mit.inf.dslreasoner.viatrasolver.partialinterpretationlanguage.partialinterpretation.PartialinterpretationPackage#getScope_MinNewElements() * @model default="0" required="true" * @generated */ int getMinNewElements(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.viatrasolver.partialinterpretationlanguage.partialinterpretation.Scope#getMinNewElements Min New Elements}' attribute. * * * @param value the new value of the 'Min New Elements' attribute. * @see #getMinNewElements() * @generated */ void setMinNewElements(int value); /** * Returns the value of the 'Max New Elements' attribute. * The default value is "-1". * *

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

* * @return the value of the 'Max New Elements' attribute. * @see #setMaxNewElements(int) * @see hu.bme.mit.inf.dslreasoner.viatrasolver.partialinterpretationlanguage.partialinterpretation.PartialinterpretationPackage#getScope_MaxNewElements() * @model default="-1" required="true" * @generated */ int getMaxNewElements(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.viatrasolver.partialinterpretationlanguage.partialinterpretation.Scope#getMaxNewElements Max New Elements}' attribute. * * * @param value the new value of the 'Max New Elements' attribute. * @see #getMaxNewElements() * @generated */ void setMaxNewElements(int value); /** * Returns the value of the 'Target Type Interpretation' reference. * It is bidirectional and its opposite is '{@link hu.bme.mit.inf.dslreasoner.viatrasolver.partialinterpretationlanguage.partialinterpretation.PartialTypeInterpratation#getScopes Scopes}'. * *

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

* * @return the value of the 'Target Type Interpretation' reference. * @see #setTargetTypeInterpretation(PartialTypeInterpratation) * @see hu.bme.mit.inf.dslreasoner.viatrasolver.partialinterpretationlanguage.partialinterpretation.PartialinterpretationPackage#getScope_TargetTypeInterpretation() * @see hu.bme.mit.inf.dslreasoner.viatrasolver.partialinterpretationlanguage.partialinterpretation.PartialTypeInterpratation#getScopes * @model opposite="scopes" required="true" * @generated */ PartialTypeInterpratation getTargetTypeInterpretation(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.viatrasolver.partialinterpretationlanguage.partialinterpretation.Scope#getTargetTypeInterpretation Target Type Interpretation}' reference. * * * @param value the new value of the 'Target Type Interpretation' reference. * @see #getTargetTypeInterpretation() * @generated */ void setTargetTypeInterpretation(PartialTypeInterpratation value); /** * Returns the value of the 'Min New Elements Heuristic' attribute. * The default value is "0". * * * @return the value of the 'Min New Elements Heuristic' attribute. * @see #setMinNewElementsHeuristic(int) * @see hu.bme.mit.inf.dslreasoner.viatrasolver.partialinterpretationlanguage.partialinterpretation.PartialinterpretationPackage#getScope_MinNewElementsHeuristic() * @model default="0" required="true" * @generated */ int getMinNewElementsHeuristic(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.viatrasolver.partialinterpretationlanguage.partialinterpretation.Scope#getMinNewElementsHeuristic Min New Elements Heuristic}' attribute. * * * @param value the new value of the 'Min New Elements Heuristic' attribute. * @see #getMinNewElementsHeuristic() * @generated */ void setMinNewElementsHeuristic(int value); } // Scope