View Javadoc

1   package cz.cuni.amis.pogamut.ut2004.communication.translator.shared.events;
2   
3   import java.util.List;
4   
5   import cz.cuni.amis.pogamut.base.communication.translator.event.WorldEventIdentityWrapper;
6   import cz.cuni.amis.pogamut.ut2004.communication.messages.gbinfomessages.Mover;
7   
8   public class MoverListObtained  extends TranslatorEvent {
9   
10  	private List<Mover> movers;
11  
12  	public MoverListObtained(List<Mover> list, long simTime) {
13  		super(simTime);
14  		this.movers = list;
15  	}
16  
17  	public List<Mover> getMovers() {
18  		return movers;
19  	}
20  
21  	public String toString() {
22  		return "MoverListObtained[movers.size() = " + movers.size() + "]";
23  	}
24  
25  }