/** */ package org.eclipse.viatra.solver.language.model.problem; /** * * A representation of the model object 'Negative Literal'. * * *

* The following features are supported: *

* * * @see org.eclipse.viatra.solver.language.model.problem.ProblemPackage#getNegativeLiteral() * @model * @generated */ public interface NegativeLiteral extends ExistentialQuantifier, Literal { /** * Returns the value of the 'Atom' containment reference. * * * @return the value of the 'Atom' containment reference. * @see #setAtom(Atom) * @see org.eclipse.viatra.solver.language.model.problem.ProblemPackage#getNegativeLiteral_Atom() * @model containment="true" * @generated */ Atom getAtom(); /** * Sets the value of the '{@link org.eclipse.viatra.solver.language.model.problem.NegativeLiteral#getAtom Atom}' containment reference. * * * @param value the new value of the 'Atom' containment reference. * @see #getAtom() * @generated */ void setAtom(Atom value); } // NegativeLiteral