/** * generated by Xtext 2.18.0.M3 */ package org.eclipse.viatra.solver.language.solverLanguage; import org.eclipse.emf.common.util.EList; /** * * A representation of the model object 'Predicate'. * * *

* The following features are supported: *

* * * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getPredicate() * @model * @generated */ public interface Predicate extends Statement { /** * Returns the value of the 'Is Error' attribute. * * * @return the value of the 'Is Error' attribute. * @see #setIsError(boolean) * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getPredicate_IsError() * @model * @generated */ boolean isIsError(); /** * Sets the value of the '{@link org.eclipse.viatra.solver.language.solverLanguage.Predicate#isIsError Is Error}' attribute. * * * @param value the new value of the 'Is Error' attribute. * @see #isIsError() * @generated */ void setIsError(boolean value); /** * Returns the value of the 'Symbol' containment reference. * * * @return the value of the 'Symbol' containment reference. * @see #setSymbol(ModelSymbol) * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getPredicate_Symbol() * @model containment="true" * @generated */ ModelSymbol getSymbol(); /** * Sets the value of the '{@link org.eclipse.viatra.solver.language.solverLanguage.Predicate#getSymbol Symbol}' containment reference. * * * @param value the new value of the 'Symbol' containment reference. * @see #getSymbol() * @generated */ void setSymbol(ModelSymbol value); /** * Returns the value of the 'Parameters' containment reference list. * The list contents are of type {@link org.eclipse.viatra.solver.language.solverLanguage.Parameter}. * * * @return the value of the 'Parameters' containment reference list. * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getPredicate_Parameters() * @model containment="true" * @generated */ EList getParameters(); /** * Returns the value of the 'Bodies' containment reference list. * The list contents are of type {@link org.eclipse.viatra.solver.language.solverLanguage.PatternBody}. * * * @return the value of the 'Bodies' containment reference list. * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getPredicate_Bodies() * @model containment="true" * @generated */ EList getBodies(); } // Predicate