< prev index next >

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

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 1996, 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) 1996, 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
*** 666,681 **** /** * Dispatches an event. The manner in which the event is * dispatched depends upon the type of the event and the * type of the event's source object: * ! * <table border=1 summary="Event types, source types, and dispatch methods"> * <tr> * <th>Event Type</th> * <th>Source Type</th> * <th>Dispatched To</th> * </tr> * <tr> * <td>ActiveEvent</td> * <td>Any</td> * <td>event.dispatch()</td> * </tr> --- 666,685 ---- /** * Dispatches an event. The manner in which the event is * dispatched depends upon the type of the event and the * type of the event's source object: * ! * <table class="striped"> ! * <caption>Event types, source types, and dispatch methods</caption> ! * <thead> * <tr> * <th>Event Type</th> * <th>Source Type</th> * <th>Dispatched To</th> * </tr> + * </thead> + * <tbody> * <tr> * <td>ActiveEvent</td> * <td>Any</td> * <td>event.dispatch()</td> * </tr>
*** 692,701 **** --- 696,706 ---- * <tr> * <td>Other</td> * <td>Other</td> * <td>No action (ignored)</td> * </tr> + * </tbody> * </table> * * @param event an instance of {@code java.awt.AWTEvent}, * or a subclass of it * @throws NullPointerException if {@code event} is {@code null}
< prev index next >