Package | Description |
---|---|
simkit.smdx |
Contains basic classes to represent the entities in a combat simulation.
|
simkit.smdx.test |
Modifier and Type | Interface and Description |
---|---|
interface |
SensorTargetMediator
Mediates interactions between Sensors and Movers.
|
Modifier and Type | Class and Description |
---|---|
class |
CookieCutterMediator
Mediator for CookieCutter detection.
|
Modifier and Type | Method and Description |
---|---|
static Mediator |
SensorTargetMediatorFactory.getMediator(java.lang.Class<? extends Sensor> sensorClass,
java.lang.Class<? extends Mover> targetClass) |
Mediator |
SensorTargetMediatorFactory.getMediatorFor(java.lang.Class<? extends Sensor> sensorClass,
java.lang.Class<? extends Moveable> targetClass)
Gets the Mediator for the given Sensor Class and Moveable Class.
|
Mediator |
MediatorFactory.getMediatorFor(java.lang.Class<? extends T1> firstClass,
java.lang.Class<? extends T2> secondClass) |
<S1 extends T1,S2 extends T2> |
MediatorFactory.getMeditorFor(S1 first,
S2 second)
Gets the Mediator for the given Objects.
|
Mediator |
SensorTargetMediatorFactory.getMeditorFor(Sensor first,
Moveable second)
Gets the Mediator for the given Sensor and Moveable (target)
|
Modifier and Type | Class and Description |
---|---|
(package private) static class |
TestSensorTargetReferee.TestMediator |