Interface Demand<Supply_ extends Supply>
-
- Type Parameters:
Supply_
- Subclass ofSupply
- All Known Implementing Classes:
AnchorVariableDemand
,CollectionInverseVariableDemand
,IndexVariableDemand
,SingletonInverseVariableDemand
,SingletonListInverseVariableDemand
public interface Demand<Supply_ extends Supply>
A subsystem submits a demand for aSupply
. Implementations must overwriteObject.equals(Object)
andObject.hashCode()
.- See Also:
Supply
,SupplyManager
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Supply_
createExternalizedSupply(SupplyManager supplyManager)
Only called if the domain model doesn't already support the demand (through a shadow variable usually).
-
-
-
Method Detail
-
createExternalizedSupply
Supply_ createExternalizedSupply(SupplyManager supplyManager)
Only called if the domain model doesn't already support the demand (through a shadow variable usually). Equal demands share the sameSupply
.- Parameters:
supplyManager
- never null- Returns:
- never null
-
-