/** */ package org.eclipse.viatra.solver.language.model.problem; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Type Scope'. * * *

* The following features are supported: *

* * * @see org.eclipse.viatra.solver.language.model.problem.ProblemPackage#getTypeScope() * @model * @generated */ public interface TypeScope extends EObject { /** * Returns the value of the 'Target Type' reference. * * * @return the value of the 'Target Type' reference. * @see #setTargetType(ClassDeclaration) * @see org.eclipse.viatra.solver.language.model.problem.ProblemPackage#getTypeScope_TargetType() * @model * @generated */ ClassDeclaration getTargetType(); /** * Sets the value of the '{@link org.eclipse.viatra.solver.language.model.problem.TypeScope#getTargetType Target Type}' reference. * * * @param value the new value of the 'Target Type' reference. * @see #getTargetType() * @generated */ void setTargetType(ClassDeclaration value); /** * Returns the value of the 'Increment' attribute. * * * @return the value of the 'Increment' attribute. * @see #setIncrement(boolean) * @see org.eclipse.viatra.solver.language.model.problem.ProblemPackage#getTypeScope_Increment() * @model * @generated */ boolean isIncrement(); /** * Sets the value of the '{@link org.eclipse.viatra.solver.language.model.problem.TypeScope#isIncrement Increment}' attribute. * * * @param value the new value of the 'Increment' attribute. * @see #isIncrement() * @generated */ void setIncrement(boolean value); /** * Returns the value of the 'Multiplicity' containment reference. * * * @return the value of the 'Multiplicity' containment reference. * @see #setMultiplicity(Multiplicity) * @see org.eclipse.viatra.solver.language.model.problem.ProblemPackage#getTypeScope_Multiplicity() * @model containment="true" * @generated */ Multiplicity getMultiplicity(); /** * Sets the value of the '{@link org.eclipse.viatra.solver.language.model.problem.TypeScope#getMultiplicity Multiplicity}' containment reference. * * * @param value the new value of the 'Multiplicity' containment reference. * @see #getMultiplicity() * @generated */ void setMultiplicity(Multiplicity value); } // TypeScope