View Javadoc

1   package cz.cuni.amis.pogamut.ut2004.communication.translator.shared.events;
2   
3   import cz.cuni.amis.pogamut.base.communication.translator.event.WorldEventIdentityWrapper;
4   
5   public class TranslatorEvent extends WorldEventIdentityWrapper {
6   	
7   	private long simTime;
8   
9   	public TranslatorEvent(long simTime) {
10  		this.simTime = simTime;
11  	}
12  
13  	@Override
14  	public long getSimTime() {
15  		return simTime;
16  	}
17  	
18  }