View Javadoc

1   package cz.cuni.amis.pogamut.udk.communication.translator.shared.events;
2   
3   import cz.cuni.amis.pogamut.base.communication.translator.event.WorldEventIdentityWrapper;
4   
5   public class ReadyCommandRequest extends WorldEventIdentityWrapper {
6   
7   	public long getSimTime() {
8       	return 0;
9       }
10  	
11      @Override
12      public String toString() {
13          return "ReadyCommandRequest('connection successful, GameBots2004 are waiting for the READY command to begin handshake')";
14      }
15  }