Package robocode

Class KeyEvent

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<Event>
    Direct Known Subclasses:
    KeyPressedEvent, KeyReleasedEvent, KeyTypedEvent

    public abstract class KeyEvent
    extends Event
    Super class of all events that originates from the keyboard.
    Since:
    1.6.1
    Author:
    Pavel Savara (original), Flemming N. Larsen (contributor)
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      KeyEvent​(java.awt.event.KeyEvent source)
      Called by the game to create a new KeyEvent.
    • Constructor Detail

      • KeyEvent

        public KeyEvent​(java.awt.event.KeyEvent source)
        Called by the game to create a new KeyEvent.
        Parameters:
        source - the source key event originating from the AWT.
    • Method Detail

      • getSourceEvent

        public java.awt.event.KeyEvent getSourceEvent()
        Do not call this method!

        This method is used by the game to determine the type of the source key event that occurred in the AWT.

        Returns:
        the source key event that originates from the AWT.