robocode
Class RobotDeathEvent

java.lang.Object
  extended by robocode.Event
      extended by robocode.RobotDeathEvent
All Implemented Interfaces:
java.lang.Comparable<Event>

public class RobotDeathEvent
extends Event

This event is sent to onRobotDeath when another robot (not your robot) dies.

Author:
Mathew A. Nelson (original)

Constructor Summary
RobotDeathEvent(java.lang.String robotName)
          Called by the game to create a new RobotDeathEvent.
 
Method Summary
 java.lang.String getName()
          Returns the name of the robot that died.
 java.lang.String getRobotName()
          Deprecated. Use getName() instead.
 
Methods inherited from class robocode.Event
compareTo, getPriority, getTime, setPriority, setTime
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

RobotDeathEvent

public RobotDeathEvent(java.lang.String robotName)
Called by the game to create a new RobotDeathEvent.

Parameters:
robotName - the name of the robot that died
Method Detail

getName

public java.lang.String getName()
Returns the name of the robot that died.

Returns:
the name of the robot that died

getRobotName

@Deprecated
public java.lang.String getRobotName()
Deprecated. Use getName() instead.