Interface ClutterModel<T>
-
public interface ClutterModel<T>
This is an optional interface to be implemented by onPropagationModelPlugin
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<NamedClutterEnvironment>
getRxEnvironments()
java.util.List<NamedClutterEnvironment>
getTxEnvironments()
NamedClutterEnvironment
rxEnvironmentSelected(T input)
takes the selected environment from the PMP settingsboolean
supportSeparateRxTxEnvironments()
NamedClutterEnvironment
txEnvironmentSelected(T input)
takes the selected environment from the PMP settings
-
-
-
Method Detail
-
rxEnvironmentSelected
NamedClutterEnvironment rxEnvironmentSelected(T input)
takes the selected environment from the PMP settings- Parameters:
input
- interface of the PMP- Returns:
- selected environment, if user defined 'user defined'
-
getRxEnvironments
java.util.List<NamedClutterEnvironment> getRxEnvironments()
-
getTxEnvironments
java.util.List<NamedClutterEnvironment> getTxEnvironments()
-
supportSeparateRxTxEnvironments
boolean supportSeparateRxTxEnvironments()
-
txEnvironmentSelected
NamedClutterEnvironment txEnvironmentSelected(T input)
takes the selected environment from the PMP settings- Parameters:
input
- interface of the PMP- Returns:
- selected environment, if user defined 'user defined'
-
-