8278254: Cleanup doclint warnings in java.desktop module

Reviewed-by: aivanov, serb
This commit is contained in:
Prasanta Sadhukhan 2022-02-02 10:04:50 +00:00
parent de826ba18a
commit ae2504b469
19 changed files with 251 additions and 82 deletions

View file

@ -151,7 +151,6 @@ import sun.awt.AWTAccessor;
*
* @since 1.1
*/
@SuppressWarnings("doclint:missing")
public class KeyEvent extends InputEvent {
/**
@ -650,53 +649,142 @@ public class KeyEvent extends InputEvent {
public static final int VK_KP_RIGHT = 0xE3;
/* For European keyboards */
/** @since 1.2 */
/**
* Constant for the Dead Grave key.
* @since 1.2
*/
public static final int VK_DEAD_GRAVE = 0x80;
/** @since 1.2 */
/**
* Constant for the Dead Acute key.
* @since 1.2
*/
public static final int VK_DEAD_ACUTE = 0x81;
/** @since 1.2 */
/**
* Constant for the Dead Circumflex key.
* @since 1.2
*/
public static final int VK_DEAD_CIRCUMFLEX = 0x82;
/** @since 1.2 */
/**
* Constant for the Dead Tilde key.
* @since 1.2
*/
public static final int VK_DEAD_TILDE = 0x83;
/** @since 1.2 */
/**
* Constant for the Dead Macron key.
* @since 1.2
*/
public static final int VK_DEAD_MACRON = 0x84;
/** @since 1.2 */
/**
* Constant for the Dead Breve key.
* @since 1.2
*/
public static final int VK_DEAD_BREVE = 0x85;
/** @since 1.2 */
/**
* Constant for the Dead Above Dot key.
* @since 1.2
*/
public static final int VK_DEAD_ABOVEDOT = 0x86;
/** @since 1.2 */
/**
* Constant for the Dead Diaeresis key.
* @since 1.2
*/
public static final int VK_DEAD_DIAERESIS = 0x87;
/** @since 1.2 */
/**
* Constant for the Dead Above Ring key.
* @since 1.2
*/
public static final int VK_DEAD_ABOVERING = 0x88;
/** @since 1.2 */
/**
* Constant for the Dead Double Acute key.
* @since 1.2
*/
public static final int VK_DEAD_DOUBLEACUTE = 0x89;
/** @since 1.2 */
/**
* Constant for the Dead Caron key.
* @since 1.2
*/
public static final int VK_DEAD_CARON = 0x8a;
/** @since 1.2 */
/**
* Constant for the Dead Cedilla key.
* @since 1.2
*/
public static final int VK_DEAD_CEDILLA = 0x8b;
/** @since 1.2 */
/**
* Constant for the Dead Ogonek key.
* @since 1.2
*/
public static final int VK_DEAD_OGONEK = 0x8c;
/** @since 1.2 */
/**
* Constant for the Dead Iota key.
* @since 1.2
*/
public static final int VK_DEAD_IOTA = 0x8d;
/** @since 1.2 */
/**
* Constant for the Dead Voiced Sound key.
* @since 1.2
*/
public static final int VK_DEAD_VOICED_SOUND = 0x8e;
/** @since 1.2 */
/**
* Constant for the Dead Semivoiced Sound key.
* @since 1.2
*/
public static final int VK_DEAD_SEMIVOICED_SOUND = 0x8f;
/** @since 1.2 */
/**
* Constant for the "&" key.
* @since 1.2
*/
public static final int VK_AMPERSAND = 0x96;
/** @since 1.2 */
/**
* Constant for the "*" key.
* @since 1.2
*/
public static final int VK_ASTERISK = 0x97;
/** @since 1.2 */
/**
* Constant for the """" key.
* @since 1.2
*/
public static final int VK_QUOTEDBL = 0x98;
/** @since 1.2 */
/**
* Constant for the "<" key.
* @since 1.2
*/
public static final int VK_LESS = 0x99;
/** @since 1.2 */
/**
* Constant for the ">" key.
* @since 1.2
*/
public static final int VK_GREATER = 0xa0;
/** @since 1.2 */
/**
* Constant for the "{" key.
* @since 1.2
*/
public static final int VK_BRACELEFT = 0xa1;
/** @since 1.2 */
/**
* Constant for the "}" key.
* @since 1.2
*/
public static final int VK_BRACERIGHT = 0xa2;
/**
@ -926,21 +1014,52 @@ public class KeyEvent extends InputEvent {
public static final int VK_INPUT_METHOD_ON_OFF = 0x0107;
/* for Sun keyboards */
/** @since 1.2 */
/**
* Constant for the Cut key.
* @since 1.2
*/
public static final int VK_CUT = 0xFFD1;
/** @since 1.2 */
/**
* Constant for the Copy key.
* @since 1.2
*/
public static final int VK_COPY = 0xFFCD;
/** @since 1.2 */
/**
* Constant for the Paste key.
* @since 1.2
*/
public static final int VK_PASTE = 0xFFCF;
/** @since 1.2 */
/**
* Constant for the Undo key.
* @since 1.2
*/
public static final int VK_UNDO = 0xFFCB;
/** @since 1.2 */
/**
* Constant for the Again key.
* @since 1.2
*/
public static final int VK_AGAIN = 0xFFC9;
/** @since 1.2 */
/**
* Constant for the Find key.
* @since 1.2
*/
public static final int VK_FIND = 0xFFD0;
/** @since 1.2 */
/**
* Constant for the Props key.
* @since 1.2
*/
public static final int VK_PROPS = 0xFFCA;
/** @since 1.2 */
/**
* Constant for the Stop key.
* @since 1.2
*/
public static final int VK_STOP = 0xFFC8;
/**