View Javadoc

1   package cz.cuni.amis.pogamut.base.communication.messages;
2   
3   import cz.cuni.amis.pogamut.base.communication.translator.event.IWorldChangeEvent;
4   
5   public interface IBatchEndEvent extends IWorldChangeEvent{
6   
7   	public static class BatchEndEventStub implements IBatchEndEvent
8   	{
9   		private long time;
10  		
11  		public BatchEndEventStub( long time )
12  		{
13  			this.time = time;
14  		}
15  		
16  		@Override
17  		public long getSimTime() {
18  			return time;
19  		}
20  		
21  	}
22  	
23  }