Name: dsR10051 Date: 01/23/2001
The constructor
java.awt.event.KeyEvent.KeyEvent(Component source, int id, long when, int modifiers, int keyCode)
has no javadoc comment. This method is declared as deprecated, but
the supposed javadoc comment is C++ comment instead, additional asterisk missed.
Here is fragment of src:
---
* @(#)KeyEvent.java 1.46 00/12/18
...
/*
^^^^^^^
* @deprecated, as of JDK1.1 - Do NOT USE; will be removed in 1.1.1.
*/
public KeyEvent(Component source, int id, long when, int modifiers,
int keyCode) {
...
---
======================================================================