All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jboss.drools.CostParameters Maven / Gradle / Ivy

/**
 */
package org.jboss.drools;

import org.eclipse.emf.ecore.EObject;

/**
 * 
 * A representation of the model object 'Cost Parameters'.
 * 
 *
 * 

* The following features are supported: *

    *
  • {@link org.jboss.drools.CostParameters#getFixedCost Fixed Cost}
  • *
  • {@link org.jboss.drools.CostParameters#getUnitCost Unit Cost}
  • *
  • {@link org.jboss.drools.CostParameters#getCurrencyUnit Currency Unit}
  • *
*

* * @see org.jboss.drools.DroolsPackage#getCostParameters() * @model extendedMetaData="name='CostParameters' kind='elementOnly'" * @generated */ public interface CostParameters extends EObject { /** * Returns the value of the 'Fixed Cost' containment reference. * *

* If the meaning of the 'Fixed Cost' containment reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Fixed Cost' containment reference. * @see #setFixedCost(Parameter) * @see org.jboss.drools.DroolsPackage#getCostParameters_FixedCost() * @model containment="true" * extendedMetaData="kind='element' name='FixedCost' namespace='##targetNamespace'" * @generated */ Parameter getFixedCost(); /** * Sets the value of the '{@link org.jboss.drools.CostParameters#getFixedCost Fixed Cost}' containment reference. * * * @param value the new value of the 'Fixed Cost' containment reference. * @see #getFixedCost() * @generated */ void setFixedCost(Parameter value); /** * Returns the value of the 'Unit Cost' containment reference. * *

* If the meaning of the 'Unit Cost' containment reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Unit Cost' containment reference. * @see #setUnitCost(Parameter) * @see org.jboss.drools.DroolsPackage#getCostParameters_UnitCost() * @model containment="true" * extendedMetaData="kind='element' name='UnitCost' namespace='##targetNamespace'" * @generated */ Parameter getUnitCost(); /** * Sets the value of the '{@link org.jboss.drools.CostParameters#getUnitCost Unit Cost}' containment reference. * * * @param value the new value of the 'Unit Cost' containment reference. * @see #getUnitCost() * @generated */ void setUnitCost(Parameter value); /** * Returns the value of the 'Currency Unit' attribute. * *

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

* * @return the value of the 'Currency Unit' attribute. * @see #setCurrencyUnit(String) * @see org.jboss.drools.DroolsPackage#getCostParameters_CurrencyUnit() * @model dataType="org.eclipse.emf.ecore.xml.type.String" * extendedMetaData="kind='element' name='CurrencyUnit' namespace='##targetNamespace'" * @generated */ String getCurrencyUnit(); /** * Sets the value of the '{@link org.jboss.drools.CostParameters#getCurrencyUnit Currency Unit}' attribute. * * * @param value the new value of the 'Currency Unit' attribute. * @see #getCurrencyUnit() * @generated */ void setCurrencyUnit(String value); } // CostParameters




© 2015 - 2025 Weber Informatics LLC | Privacy Policy