/** */ package org.eclipse.viatra.solver.language.solverLanguage; /** * * A representation of the model object 'Functor Definiton'. * * *

* The following features are supported: *

* * * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getFunctorDefiniton() * @model abstract="true" * @generated */ public interface FunctorDefiniton extends Statement { /** * Returns the value of the 'Head' containment reference. * * * @return the value of the 'Head' containment reference. * @see #setHead(Expression) * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getFunctorDefiniton_Head() * @model containment="true" * @generated */ Expression getHead(); /** * Sets the value of the '{@link org.eclipse.viatra.solver.language.solverLanguage.FunctorDefiniton#getHead Head}' containment reference. * * * @param value the new value of the 'Head' containment reference. * @see #getHead() * @generated */ void setHead(Expression value); /** * Returns the value of the 'Body' containment reference. * * * @return the value of the 'Body' containment reference. * @see #setBody(Expression) * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getFunctorDefiniton_Body() * @model containment="true" * @generated */ Expression getBody(); /** * Sets the value of the '{@link org.eclipse.viatra.solver.language.solverLanguage.FunctorDefiniton#getBody Body}' containment reference. * * * @param value the new value of the 'Body' containment reference. * @see #getBody() * @generated */ void setBody(Expression value); } // FunctorDefiniton