< prev index next >

src/java.desktop/share/classes/java/awt/AWTKeyStroke.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this --- 1,7 ---- /* ! * Copyright (c) 2000, 2017, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this
*** 88,99 **** } /** * Constructs an {@code AWTKeyStroke} with default values. * The default values used are: ! * <table border="1" summary="AWTKeyStroke default values"> * <tr><th>Property</th><th>Default Value</th></tr> * <tr> * <td>Key Char</td> * <td>{@code KeyEvent.CHAR_UNDEFINED}</td> * </tr> * <tr> --- 88,104 ---- } /** * Constructs an {@code AWTKeyStroke} with default values. * The default values used are: ! * ! * <table class="striped"> ! * <caption>AWTKeyStroke default values</caption> ! * <thead> * <tr><th>Property</th><th>Default Value</th></tr> + * </thead> + * <tbody> * <tr> * <td>Key Char</td> * <td>{@code KeyEvent.CHAR_UNDEFINED}</td> * </tr> * <tr>
*** 106,115 **** --- 111,121 ---- * </tr> * <tr> * <td>On key release?</td> * <td>{@code false}</td> * </tr> + * </tbody> * </table> * * {@code AWTKeyStroke}s should not be constructed * by client code. Use a variant of {@code getAWTKeyStroke} * instead.
< prev index next >