View Javadoc

1   package cz.cuni.amis.pogamut.defcon.communication.worldview.modules.managers.fleets;
2   
3   import java.util.List;
4   
5   import cz.cuni.amis.pogamut.defcon.communication.messages.infos.Fleet;
6   
7   /**
8    * Returns a list of fleets that have been successfully places, along with
9    * initData passed to the list originally and whether requested number of fleets
10   * have been placed.
11   * 
12   * @author Radek 'Black_Hand' Pibil
13   * 
14   */
15  public interface IPlacingFinishedListener {
16  	void placingFinished(List<Fleet> succeeded, Object initData, boolean success);
17  }