/** */ package hu.bme.mit.inf.dslreasoner.viatrasolver.partialinterpretationlanguage.partialinterpretation; import hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.DefinedElement; /** * * A representation of the model object 'Primitive Element'. * * *

* The following features are supported: *

* * * @see hu.bme.mit.inf.dslreasoner.viatrasolver.partialinterpretationlanguage.partialinterpretation.PartialinterpretationPackage#getPrimitiveElement() * @model abstract="true" * @generated */ public interface PrimitiveElement extends DefinedElement { /** * Returns the value of the 'Value Set' attribute. * *

* If the meaning of the 'Value Set' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Value Set' attribute. * @see #setValueSet(boolean) * @see hu.bme.mit.inf.dslreasoner.viatrasolver.partialinterpretationlanguage.partialinterpretation.PartialinterpretationPackage#getPrimitiveElement_ValueSet() * @model required="true" * @generated */ boolean isValueSet(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.viatrasolver.partialinterpretationlanguage.partialinterpretation.PrimitiveElement#isValueSet Value Set}' attribute. * * * @param value the new value of the 'Value Set' attribute. * @see #isValueSet() * @generated */ void setValueSet(boolean value); } // PrimitiveElement