01
02
03
04
05
06
07
08
09
package myproject.model;

/**
 * Interface for active model objects.
 */
public interface Agent {
  public void run(double time);
}