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

* The following features are supported: *

* * * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getField() * @model * @generated */ public interface Field extends EObject { /** * Returns the value of the 'Containment' attribute. * * * @return the value of the 'Containment' attribute. * @see #setContainment(boolean) * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getField_Containment() * @model * @generated */ boolean isContainment(); /** * Sets the value of the '{@link org.eclipse.viatra.solver.language.solverLanguage.Field#isContainment Containment}' attribute. * * * @param value the new value of the 'Containment' attribute. * @see #isContainment() * @generated */ void setContainment(boolean value); /** * Returns the value of the 'Cross Reference' attribute. * * * @return the value of the 'Cross Reference' attribute. * @see #setCrossReference(boolean) * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getField_CrossReference() * @model * @generated */ boolean isCrossReference(); /** * Sets the value of the '{@link org.eclipse.viatra.solver.language.solverLanguage.Field#isCrossReference Cross Reference}' attribute. * * * @param value the new value of the 'Cross Reference' attribute. * @see #isCrossReference() * @generated */ void setCrossReference(boolean value); /** * Returns the value of the 'Opposite' reference. * * * @return the value of the 'Opposite' reference. * @see #setOpposite(Symbol) * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getField_Opposite() * @model * @generated */ Symbol getOpposite(); /** * Sets the value of the '{@link org.eclipse.viatra.solver.language.solverLanguage.Field#getOpposite Opposite}' reference. * * * @param value the new value of the 'Opposite' reference. * @see #getOpposite() * @generated */ void setOpposite(Symbol 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.solverLanguage.SolverLanguagePackage#getField_Multiplicity() * @model containment="true" * @generated */ Multiplicity getMultiplicity(); /** * Sets the value of the '{@link org.eclipse.viatra.solver.language.solverLanguage.Field#getMultiplicity Multiplicity}' containment reference. * * * @param value the new value of the 'Multiplicity' containment reference. * @see #getMultiplicity() * @generated */ void setMultiplicity(Multiplicity value); /** * Returns the value of the 'Type' reference. * * * @return the value of the 'Type' reference. * @see #setType(Symbol) * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getField_Type() * @model * @generated */ Symbol getType(); /** * Sets the value of the '{@link org.eclipse.viatra.solver.language.solverLanguage.Field#getType Type}' reference. * * * @param value the new value of the 'Type' reference. * @see #getType() * @generated */ void setType(Symbol value); /** * Returns the value of the 'Name' attribute. * * * @return the value of the 'Name' attribute. * @see #setName(String) * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getField_Name() * @model * @generated */ String getName(); /** * Sets the value of the '{@link org.eclipse.viatra.solver.language.solverLanguage.Field#getName Name}' attribute. * * * @param value the new value of the 'Name' attribute. * @see #getName() * @generated */ void setName(String value); } // Field