/** * generated by Xtext 2.16.0 */ package hu.bme.mit.inf.dslreasoner.application.applicationConfiguration; import java.math.BigDecimal; /** * * A representation of the model object 'Threshold Entry'. * * *

* The following features are supported: *

* * * @see hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.ApplicationConfigurationPackage#getThresholdEntry() * @model * @generated */ public interface ThresholdEntry extends ObjectiveEntry { /** * Returns the value of the 'Operator' attribute. * The literals are from the enumeration {@link hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.ComparisonOperator}. * *

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

* * @return the value of the 'Operator' attribute. * @see hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.ComparisonOperator * @see #setOperator(ComparisonOperator) * @see hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.ApplicationConfigurationPackage#getThresholdEntry_Operator() * @model * @generated */ ComparisonOperator getOperator(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.ThresholdEntry#getOperator Operator}' attribute. * * * @param value the new value of the 'Operator' attribute. * @see hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.ComparisonOperator * @see #getOperator() * @generated */ void setOperator(ComparisonOperator value); /** * Returns the value of the 'Threshold' attribute. * *

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

* * @return the value of the 'Threshold' attribute. * @see #setThreshold(BigDecimal) * @see hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.ApplicationConfigurationPackage#getThresholdEntry_Threshold() * @model * @generated */ BigDecimal getThreshold(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.ThresholdEntry#getThreshold Threshold}' attribute. * * * @param value the new value of the 'Threshold' attribute. * @see #getThreshold() * @generated */ void setThreshold(BigDecimal value); } // ThresholdEntry