-
Bug
-
Resolution: Fixed
-
P5
-
1.3.0, 1.4.0
-
beta
-
generic
-
generic
In the constructor for KeyEvent.java, "specifies" is misspelled as "specifys"
in the @param when field.
/**
* Constructs a KeyEvent object.
*
* @param source the Component that originated the event
* @param id an integer identifying the type of event
* @param when a long integer that specifys the time the event occurred
* @param modifiers the modifier keys down during event
* (shift, ctrl, alt, meta)
* @param keyCode the integer code for an actual key, or VK_UNDEFINED
* (for a key-typed event)
* @param keyChar the Unicode character generated by this event, or
* CHAR_UNDEFINED (for key-pressed and key-released
* events which do not map to a valid Unicode character)
*/
in the @param when field.
/**
* Constructs a KeyEvent object.
*
* @param source the Component that originated the event
* @param id an integer identifying the type of event
* @param when a long integer that specifys the time the event occurred
* @param modifiers the modifier keys down during event
* (shift, ctrl, alt, meta)
* @param keyCode the integer code for an actual key, or VK_UNDEFINED
* (for a key-typed event)
* @param keyChar the Unicode character generated by this event, or
* CHAR_UNDEFINED (for key-pressed and key-released
* events which do not map to a valid Unicode character)
*/