Interface Program<E extends Entity>
-
- Type Parameters:
E
- The type of entities this program can operate on.
public interface Program<E extends Entity>
The interface for programs that operate on entities. Programs can be run by usingSimulation.runProgram(de.unistuttgart.informatik.fius.icge.simulation.programs.Program<E>, S)
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
run(E entity)
The entry method of the program.
-
-
-
Method Detail
-
run
void run(E entity)
The entry method of the program.- Parameters:
entity
- The entity this program operates on.
-
-